export type SearchInputProps = { value?: string; onChange: (value: string) => void; disabled?: boolean; throttleDelay?: number; }; export declare const SearchInput: ({ value: valueProp, onChange, disabled, throttleDelay, }: SearchInputProps) => import("react/jsx-runtime").JSX.Element;