import { Secret, GuidValue } from "../models"; export declare class SecretsService { private httpClient; getSecret: (key: string, serviceId: GuidValue, profileId?: GuidValue) => Promise; setTenantSecret: (secret: Secret) => Promise; setBusinessProfileSecret: (secret: Secret, profileId: GuidValue) => Promise; removeSecret: (key: string, serviceId: GuidValue, profileId?: GuidValue) => Promise; }