import { ChangeEvent } from 'react'; import { IconName } from '../icon/Icon.component'; import { InputSize } from '../inputv2/inputv2'; import { CoreUITheme } from '../../style/theme'; export type Props = { placeholder?: string; value: string; onChange: (e: ChangeEvent) => void; onReset?: () => void; disabled?: boolean; id?: string; size?: InputSize; autoComplete?: 'on' | 'off'; searchIcon?: IconName; searchIconColor?: keyof CoreUITheme; }; declare const SearchInput: import("react").ForwardRefExoticComponent>; export { SearchInput }; //# sourceMappingURL=SearchInput.component.d.ts.map