/** * @uiName Employee Registration/Login */ export declare class EmployeeStart { /** * @uiName Page title */ titletext: string; /** * Text inside the sign in button * * @uiName Sign In Text */ signintext: string; /** * Alternate sign in link text * * @uiName Alt Sign In Text */ altsignintext: string; /** * Text surrounding the details link * * @uiName Details Text */ detailstext: string; /** * Link to sign in details * * @uiName Details Link */ detailslink: string; /** * Text inside the details link * * @uiName Details Link Text */ detailslinktext: string; /** * Routing path for the main dashboard eg. /widget * * @uiName Dashboard Path */ dashboardPath: string; /** * Routing path for the main dashboard eg. /partner * * @uiName Consultant Path */ consultantPath: string; /** * Email domain that is allowed for google logins * * @uiName Email Domain */ emailDomain: string; ignored: boolean; constructor(); disconnectedCallback(): void; render(): any; }