import { BaseService } from "./base"; import { CreateProfileParams, ProfileResponse, CreateProfileResponse, ProfileListParams, ProfileListResponse } from "../types/profile"; import { BasicResponse } from "../types"; export declare class ProfilesService extends BaseService { /** * Create a new profile * @param params Configuration parameters for the new profile */ create(params?: CreateProfileParams): Promise; /** * Get details of an existing profile * @param id The ID of the profile to get */ get(id: string): Promise; /** * Delete an existing profile * @param id The ID of the profile to delete */ delete(id: string): Promise; /** * List all profiles with optional pagination * @param params Optional parameters to filter the profiles */ list(params?: ProfileListParams): Promise; }