import React from 'react'; import '../styles/_utils.scss'; import styles from './FilterItem.module.scss'; export interface FilterItemProps { /** Children of `Filter.Item`. */ children: React.ReactNode; /** Accessible name for the `Filter.Item`, which will be visually hidden by default. */ label: string; /** The visible label which by default will show the `label` prop value. It will then show the filter values when applied. */ displayLabel: null | string | number | string[]; /** Sets the `Filter.Item` to a disabled state. */ disabled?: boolean; /** Function that will be called when the reset button is clicked. */ onReset?: () => void; /** Function that will be called when the apply button is clicked. */ onApply?: () => void; } export declare const FilterItem: React.FC; export default FilterItem; export { styles }; //# sourceMappingURL=FilterItem.d.ts.map