import { InputProps } from '../Input'; interface SearchFieldProps extends Omit { /** * If true, the input will display in an error state with error styling */ error?: boolean; /** * If true, the input will display in a valid state with success styling */ isValid?: boolean; /** * If true, displays a paste button as an end adornment * @default false */ showPasteButton?: boolean; /** * Label for the paste button * @default "Paste" */ pasteButtonLabel?: string; /** * Label for the input * @default "Search" */ label?: string; } declare const SearchField: import('react').ForwardRefExoticComponent>; export { SearchField }; export type { SearchFieldProps };