export declare type InputType = "text" | "password" | "number" | "email"; export declare const inputType: { text: InputType; password: InputType; number: InputType; email: InputType; };