UNPKG

reablocks

Version:
15 lines (13 loc) 381 B
import { InfinityListInputs } from './useInfinityList'; import { FC } from 'react'; export interface InfinityListProps extends Omit<InfinityListInputs, 'items'> { /** * The children to filter. */ children: any; /** * CSS Classname to apply to the button. */ buttonClassName?: string; } export declare const InfinityList: FC<InfinityListProps>;