import { default as React } from 'react'; interface IconProps { size?: string | number; color?: string; } export type InputSize = 'micro' | 'default'; export interface SearchFieldProps extends React.InputHTMLAttributes { label?: string; error?: string; className?: string; showSearchIcon?: boolean; searchIcon?: React.ReactElement; searchIconColor?: string; inputSize?: InputSize; showFocusBorder?: boolean; children?: React.ReactNode; } export declare function SearchField({ label, error, className, showSearchIcon, searchIcon, searchIconColor, inputSize, showFocusBorder, children, id: providedId, type, ...props }: SearchFieldProps): import("react/jsx-runtime").JSX.Element; export {};