Repository URL to install this package:
|
Version:
2.8.4 ▾
|
import { ListProps } from './typings';
/**
*
* @param item each item from map function
* @param props list props whichc shared through the list function
*/
declare function renderItem(item: ListProps, props?: ListProps): 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 };