import { ComponentPropsWithoutRef } from 'react'; import { FormProps } from '../Form'; import { InputProps } from '../Input'; export interface SearchLocalization { search: string; } export interface SearchProps extends Omit, 'onSubmit'> { localization?: SearchLocalization; value: InputProps['value']; onChange: InputProps['onChange']; onSubmit: FormProps['onSubmit']; } //# sourceMappingURL=types.d.ts.map