import { JsonValue } from "type-fest";
/**
 * Get a secret from the Archon configurator secret store. This includes database passwords, API keys, and other sensitive information.
 *
 * Make sure the application calling this API has the appropriate permissions to access the secret.
 * @param key The key of the secret to retrieve.
 * @returns The secret value.
 */
export default function getSecret(key: string): Promise<JsonValue>;
//# sourceMappingURL=getSecret.d.ts.map