import { WithSupportProps } from '@cloud-ru/ds-utils'; export type SearchProps = { value: string; onChange(value: string): void; onSubmit?(value: string): void; placeholder?: string; loading?: boolean; }; export declare function Search({ value, onChange, onSubmit, placeholder, loading, 'data-test-id': dataTestId, }: WithSupportProps): import("react/jsx-runtime").JSX.Element;