import { BaseEntity } from './base-entity'; import { UserBase } from './security-entities'; export declare class InitTopBarData extends BaseEntity { companyName?: string; userProfilePath?: string; showProfileIcon?: boolean; currentUser?: UserBase; constructor({ companyName, userProfilePath, showProfileIcon, currentUser, }?: { companyName?: string; userProfilePath?: string; showProfileIcon?: boolean; currentUser?: UserBase; }); static readonly typeName: "InitTopBarData"; }