import { ChangeEvent } from 'react'; import { InputProps } from './Input.js'; interface SearchFieldOwnProps { /** Fires on every keystroke. Also fires with `''` when the clear button is pressed. */ onChange?: (value: string, event?: ChangeEvent) => void; } export type SearchFieldProps = SearchFieldOwnProps & Omit; /** Shape of `SearchField` defaults that can be supplied via `CladdProvider`'s `defaults` prop. */ export type SearchFieldDefaultProps = Partial>; export declare const SearchField: (props: SearchFieldProps) => import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=SearchField.d.ts.map