import { DropdownOption } from '../../internal/components/option/interfaces';
interface ItemProps {
    option: DropdownOption;
    index: number;
    getOptionProps: any;
    filteringValue: string;
    isKeyboard: boolean;
    checkboxes: boolean;
}
export declare const getItemProps: ({ option, index, getOptionProps, filteringValue, isKeyboard, checkboxes }: ItemProps) => any;
export {};
