import * as React from 'react'; import { FieldElementWrapperProps } from '../../components/field-wrapper/FieldWrapper'; import { SearchInputProps } from '../../components/search-input/SearchInput'; type SearchFieldProps = SearchInputProps & FieldElementWrapperProps; export declare const SearchField: { ({ className, hideLabel, label, name, validation, prompt, description, appearance, theme, ...remainingProps }: SearchFieldProps): React.JSX.Element; displayName: string; }; export {};