import React, { ChangeEvent, InputHTMLAttributes } from 'react'; import type { ContentNode } from '../../types'; interface SearchFieldProps extends Omit, 'onChange'> { label: ContentNode; value?: string; defaultValue?: string; onChange?: (value: string, e: ChangeEvent) => void; hideLabel?: boolean; isForm?: boolean; trailingChildren?: React.ReactNode; } declare const SearchField: React.ForwardRefExoticComponent>; export default SearchField;