import { IconName } from '@fortawesome/fontawesome-common-types'; import React, { FC } from 'react'; import { InputAlertObj, InputVariants } from '../../../../../models'; interface Props { isFocused: boolean; itemsSelected: any; menuOpen: boolean; id: string | undefined; name: string; onFocus: () => void; onReset: () => void; onSearchChange: (event: React.ChangeEvent, value?: string, name?: string) => void; alert?: InputAlertObj; disabled?: boolean; icon?: IconName; inputVariant?: InputVariants; isSearchable?: boolean; hasReset?: boolean; helpText?: React.ReactNode; multiple?: boolean; placeholder?: string; inputCustomProps?: any; } export declare const SelectInputText: FC; export {}; //# sourceMappingURL=index.d.ts.map