import React from 'react'; import type { InputProps } from '@toptal/picasso-input'; import type { FieldProps } from '../Field'; import type { Props as FieldLabelProps } from '../FieldLabel'; export declare type FormInputProps = Omit & { /** Callback invoked when reset button was clicked */ onResetClick?: (set: (value: string) => void) => void; }; export declare type Props = FormInputProps & FieldProps & FieldLabelProps; export declare const Input: React.ForwardRefExoticComponent, HTMLInputElement, string | undefined>> & React.RefAttributes>; export default Input; //# sourceMappingURL=Input.d.ts.map