export declare class TenantEntity {
    id: string;
    name: string;
    subdomain: string;
    is_active: boolean;
    created_at: Date;
    updated_at: Date;
}
