import { AuthInputInterface } from './auth-input.interface'; export declare class AuthInput implements AuthInputInterface { name: string; placeholder: string; type: string; required: boolean; minlength: number; errorMessage: string; validationExp: any; constructor(item: any); }