import { Tenant } from '../../tenants/entities/tenant.entity';
export declare class Organization {
    id: string;
    tenantId: string;
    tenant: Tenant;
    name: string;
    slug: string;
    description: string;
    status: string;
    createdAt: Date;
    updatedAt: Date;
}
