import { TableInstance } from 'react-table';
import { ReactElement } from 'react';
declare type FilterChipBarProps<T extends Record<string, unknown>> = {
    instance: TableInstance<T>;
    showMore: boolean;
    currentHeight: number;
};
export declare function FilterChipBarCollapsible<T extends Record<string, unknown>>({ instance, showMore, }: FilterChipBarProps<T>): ReactElement | null;
export {};
