export interface EmployeeLoginPageViewProps { states: { error?: string; loading: boolean; text: { titletext: string; signintext: string; instructions: string; loginPath: string; regularPath: string; dashboardPath: string; emailDomain: string; }; }; callbacks: { onClick: () => void; }; } export declare function EmployeeLoginPageView(props: EmployeeLoginPageViewProps): any;