interface InputProps { value: string | undefined; onChange?: (e?: any) => any; onInput?: (e?: any) => any; onBlur?: (e?: any) => any; label: string; name: string; id: string; error?: string; type?: "text" | "email" | "password"; css?: any; disabled?: boolean; } export declare const ErrorSVG: () => any; export declare const Input: ({ value, onChange, onInput, onBlur, label, error, type, disabled, name, id, css, }: InputProps) => any; export {};