import { EmployeeLoginPageViewProps } from "./rc-employee-login-page-view"; import { DemoData } from "../../global/demo"; /** * @uiName Employee Login Page */ export declare class EmployeeLoginPage { ignored: boolean; /** * @uiName Page Title */ titletext: string; /** * @uiName Sign In Button Text */ signintext: string; /** * @uiName Alternate Sign In Link Text */ altsignintext: string; /** * Routing path for the google login page * @uiName Login Path */ loginPath: string; /** * Routing path for the main dashboard eg. /widget * @uiName Dashboard Path */ dashboardPath: string; /** * Routing path for the regular dashboard eg. / * @uiName Regular Path */ regularPath: string; /** * Login instructions text * @uiName Login Instructions */ instructions: string; /** * Email domain to restrict google login to * @uiName Email Domain */ emailDomain: string; /** * @undocumented * @uiType object */ demoData?: DemoData; constructor(); disconnectedCallback(): void; render(): any; }