export type DeployEnv = 'dev' | 'demo'; /** * Generates an object containing the paths for private/public keys pairs * associated with login.gov for an application in the specified * deployment environment. */ export declare const getAppLoginGovKeys: (env: DeployEnv, appKey: string) => { privateKey: string; publicKey: string; }; //# sourceMappingURL=values.d.ts.map