export declare class CreateGroupDto {
    tenantId?: string;
    name: string;
    slug: string;
    description?: string;
    createdBy: string;
}
