import Resource from '../../../common/resource'; import CreateProfileDTO from '../dtos/CreateProfileDTO'; import UpdateProfileDTO from '../dtos/UpdateProfileDTO'; import CreateProfileResponseDTO from '../responses/ICreateProfileResponse'; import IFindProfileResponse from '../responses/IFindProfileResponse'; declare class Profile extends Resource { constructor(token?: string, url?: string); create(data: CreateProfileDTO): Promise; get(profileName: string): Promise; list(): Promise; update(profileName: string, data: UpdateProfileDTO): Promise; delete(profileName: string): Promise; } export default Profile;