import { type SearchFieldProps as RACSearchFieldProps } from 'react-aria-components'; import type { ApiProps, CommonProps, FieldWithPlaceholderProps } from '../types.js'; export interface SearchFieldProps extends CommonProps, FieldWithPlaceholderProps, ApiProps, Pick { } /** The imperative API exposed by the `SearchField` component. */ export interface SearchFieldApi { /** Focuses the input field. */ focus: () => void; /** Selects the contents of the input field. */ select: () => void; } /** * Allows users to enter and clear a search query. * * See [search field usage guidelines](https://ui.cimpress.io/components/search-field/). */ declare const _SearchField: (props: SearchFieldProps & import("react").RefAttributes & import("../../with-style-props.js").StyleProps) => import("react").JSX.Element | null; export { _SearchField as SearchField }; //# sourceMappingURL=search-field.d.ts.map