import React from 'react'; import type { SelectOption } from '../../core/types'; type SelectInputProps = { id?: string; listboxId?: string; selectedOptions: SelectOption[]; searchValue: any; stickyValue: any; onlyIcon?: boolean; icon?: React.ReactNode; customIcon?: React.ReactNode; placeholder?: string; multiple?: boolean; searchable?: boolean; clearable?: boolean; inputRef?: React.ForwardedRef; clearHandler?: (value?: any) => void; inputBlurHandler?: (e?: any) => void; inputFocusHandler?: (e?: any) => void; searchHandler?: (e?: any) => void; clickHandler?: (e?: any) => void; }; export declare function SelectInput(props: SelectInputProps): React.ReactNode; export declare const SelectInputWrapper: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit, HTMLDivElement>, never> & Partial, HTMLDivElement>, never>>> & string; export {};