import { BrandsService } from './brands.service';
export declare class BrandsController {
    private readonly brandsService;
    constructor(brandsService: BrandsService);
    getProfile(req: any): Promise<import("./brand-profile.entity").BrandProfile | null>;
    updateProfile(req: any, data: any): Promise<import("./brand-profile.entity").BrandProfile>;
    getTeam(req: any): Promise<any[]>;
    createTeamMember(req: any, body: {
        email: string;
        password: string;
        permissions: Record<string, boolean>;
    }): Promise<any>;
    updateTeamMember(req: any, id: string, body: {
        permissions: Record<string, boolean>;
    }): Promise<any>;
    removeTeamMember(req: any, id: string): Promise<any>;
}
