export declare class CreateTenantDto {
    name: string;
    slug: string;
    domain?: string;
    logoUrl?: string;
    isWhiteLabel?: boolean;
}
