export interface PortalSettings { encodedKey?: string; lastLoggedInDate?: string; portalState?: PortalSettingsPortalStateEnum; } export declare const PortalSettingsPortalStateEnum: { readonly Enabled: "ENABLED"; readonly Disabled: "DISABLED"; }; export type PortalSettingsPortalStateEnum = (typeof PortalSettingsPortalStateEnum)[keyof typeof PortalSettingsPortalStateEnum];