import { IconName } from '@fortawesome/fontawesome-svg-core'; import React from 'react'; import { InputAlertObj, InputVariants, SearchOptions, SelectItemProps, SelectSearchableProps } from '../../../models'; export interface InputSelectProps { items: SelectItemProps[]; alert?: InputAlertObj; disabled?: boolean; icon?: IconName; inputVariant?: InputVariants; fullWidth?: boolean; hasReset?: boolean; helpText?: React.ReactNode; isSearchable?: SelectSearchableProps; label?: string; loading?: boolean; multiple?: boolean; id?: string; name?: string; placeholder?: string; searchOptions?: SearchOptions; selectedItems?: SelectItemProps[]; onChange?: (item: SelectItemProps[], name: string) => void; onFocus?: () => void; onBlur?: () => void; onReset?: () => void; onSearchChange?: (event: React.ChangeEvent, value?: string, name?: string) => void; visibleRows?: number; inputCustomProps?: any; setRefSelecMenu?: React.Dispatch>; } export declare const InputSelectComponent: React.ForwardRefRenderFunction; export declare const InputSelect: React.ForwardRefExoticComponent>; //# sourceMappingURL=index.d.ts.map