export declare class ServerEntity { id: string; /** * Indicates whether the server hosts multiple organizations */ isMultiTenant: boolean; createdAt: Date; modifiedAt: Date; revision: number; constructor(partial: Partial); }