export declare class Organization {
    readonly id: string;
    name: string;
    slug: string;
    subdomain: string | null;
    domain: string | null;
    settings: any;
    createdAt: Date;
    updatedAt: Date;
    deletedAt: Date | null;
    constructor(id: string, name: string, slug: string, subdomain: string | null, domain: string | null, settings: any, createdAt: Date, updatedAt: Date, deletedAt: Date | null);
    updateName(newName: string): void;
}
//# sourceMappingURL=Organization.d.ts.map