import type { Client, ClientOptions } from "@azure-rest/core-client"; import type { TokenCredential } from "@azure/core-auth"; /** The Azure Key Vault Secrets client manages secrets in the Key Vault service. */ export interface KeyVaultContext extends Client { /** The API version to use for this operation. */ /** Known values of {@link KnownVersions} that the service accepts. */ apiVersion: string; } /** Optional parameters for the client. */ export interface KeyVaultClientOptionalParams extends ClientOptions { /** The API version to use for this operation. */ /** Known values of {@link KnownVersions} that the service accepts. */ apiVersion?: string; } /** Creates a new Azure Key Vault Secrets client context. */ export declare function createKeyVault(endpointParam: string, credential: TokenCredential, options?: KeyVaultClientOptionalParams): KeyVaultContext; //# sourceMappingURL=keyVaultContext.d.ts.map