import type { ReactNode } from 'react';
import type { ListState } from '@react-stately/list';
import type { FilterItem } from './base-filter.state';
export declare const FilterOption: (props: OptionProps) => JSX.Element;
interface OptionProps {
    item: {
        key: string | number;
        rendered: ReactNode;
    };
    state: ListState<FilterItem>;
    inputRenderer: ({ isSelected }: {
        isSelected: boolean;
    }) => ReactNode;
}
export {};
