import { CreatorsService } from './creators.service';
export declare class CreatorsController {
    private readonly creatorsService;
    constructor(creatorsService: CreatorsService);
    getProfile(req: any): Promise<import("./creator-profile.entity").CreatorProfile | null>;
    updateProfile(req: any, data: any): Promise<import("./creator-profile.entity").CreatorProfile>;
    getAllPublic(search?: string, category?: string, location?: string, minFollowers?: string, maxFollowers?: string, sort?: string): Promise<any[]>;
    getPublicProfile(id: string): Promise<any>;
}
