Repository URL to install this package:
|
Version:
4.0.29 ▾
|
import { CardProps } from './typings';
import { ExpandableState as CardState } from './ExpandableCardState';
/**
* @description only renders toggle button
*/
declare function renderToggleButton(props: CardProps, state: CardState): JSX.Element;
/**
* @description the first view of the Expandable card
*/
declare function renderDefaultView(props: CardProps, state: CardState): JSX.Element;
/**
* @description the Expandable view of the card
*/
declare function renderExpandedView(props: CardProps, state: CardState): JSX.Element;
/**
* @description only renders wrappers
*/
declare function renderWrap(props: CardProps, state: CardState): JSX.Element;
export { renderWrap, renderToggleButton, renderDefaultView, renderExpandedView };