import { SecretClient } from "@azure/keyvault-secrets"; export interface HsmSecretFile { secretFilePath: string; cleanup: () => Promise; } export declare function getSecretClient(): Promise; export interface HsmCertificateFile { secretFilePath: string; cleanup: () => Promise; } export declare function downloadCertificateFile(secretName: string, { postfix, filePath }: { postfix?: string; filePath?: string; }): Promise; export declare function getSecret(secretName: string): Promise;