import React from 'react'; import type { InputType } from '../../constants'; export type InputProps = { name?: string; label?: string; placeholder?: string; containerClassName?: string; labelClassName?: string; className?: string; value?: string | number | readonly string[] | undefined; onChange?: React.ChangeEventHandler; autoFocus?: boolean; content?: React.ReactNode; onFocus?: React.FocusEventHandler; onBlur?: React.FocusEventHandler; focusOnLabelClick?: boolean; onLabelClick?: React.ReactEventHandler; type?: InputType; disabled?: boolean; required?: boolean; readOnly?: boolean; maxLength?: number; minLength?: number; pattern?: string; autoComplete?: string; id?: string; }; export declare const Input: React.ForwardRefExoticComponent>; //# sourceMappingURL=Input.d.ts.map