import { ProfileState } from "../ProfileState"; import { ProfileType } from "../ProfileType"; import Profile from "./Profile"; export interface CreateProfileResult { data: Profile; } export interface GetProfileResult { data: Profile[]; } declare class ProfileManager { create(name: string, certId: string[] | string, bundleId: string, deviceId: string[] | string, profileType: ProfileType): Promise; delete(id: string): Promise; getAllProfile(): Promise; getProfile(profileType: ProfileType, profileState: ProfileState): Promise; } declare const _default: ProfileManager; export default _default;