import { FC } from 'react';
import { InfinityListInputs } from './useInfinityList';
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>;
