import * as r from '@gsa-tts/forms-common'; import { type SecretsVault } from '../types.js'; /** * Returns either a production vault or an in-memory vault initialized with the * contents of a JSON file. * @param jsonFilePath Optional path to a local JSON file that will stand-in * for a secrets vault. * @returns In-memory or production vault. */ export declare const getSecretsVault: (jsonFilePath?: string) => Promise; export declare const getAWSSecretsVault: () => SecretsVault; export declare const getAWSSecretsManagerVault: () => SecretsVault; export declare const createInMemorySecretsVault: (jsonString?: any) => r.Result; //# sourceMappingURL=index.d.ts.map