export declare class Role {
    id: string;
    name: string;
    permissions: Record<string, boolean>;
    brand_id: string;
    created_at: Date;
    updated_at: Date;
}
