/// export interface IProps { label: string; value: string | number; isActive: boolean; tabIndex: number; handleSelect: (val: string | number) => void; } export declare const PickerItem: ({ label, value, isActive, handleSelect, tabIndex, }: IProps) => JSX.Element;