/// import type { PDSTextType } from '../../../common'; type Props = { name: string; hintText?: PDSTextType; defaultText?: PDSTextType; responsiveMode?: 'none' | 'use'; size?: 'small' | 'medium' | 'large'; customWidth?: string; arrowBtnMode?: 'use' | 'none'; onTarget?: () => void; onClickArrowIBtn?: () => void; onClickSearchIBtn?: (value: string) => void; }; declare function SearchField({ name, hintText, defaultText, responsiveMode, size, customWidth, arrowBtnMode, onTarget, onClickArrowIBtn, onClickSearchIBtn }: Props): JSX.Element; export default SearchField;