import { RenderProps } from "."; export interface InputProps { type: string; name: string; required?: boolean; min?: number; max?: number; minLength?: number; maxLength?: number; pattern?: string; step?: string | number; defaultValue?: string | number; ["aria-invalid"]?: boolean; ["aria-errormessage"]?: string; } export declare function inputProps(field: RenderProps): InputProps; //# sourceMappingURL=input-props.d.ts.map