Repository URL to install this package:
|
Version:
4.0.61 ▾
|
import { ListProps, ItemProps } from './typings';
/**
*
* @param item each item from map function
* @param props list props which shared through the list function
*/
declare function renderItem(item: ItemProps): JSX.Element;
/**
* rendering the list
*/
declare function renderList(props: ListProps): JSX.Element[];
/**
* rendering the wrapper
*/
declare function renderWrapper(props: ListProps): JSX.Element;
export { renderList, renderItem, renderWrapper };