export interface EnvRestoreOptions { profile: string; output?: string; } /** * Restore plaintext .env from Keychain secrets, gated by biometric authentication. * * Security note (Phase 1): Touch ID serves as a UX gate — it prevents * accidental secret exposure by requiring physical user presence. The * authentication and Keychain read are separate operations within the same * process. Phase 2 will merge these into a single native call using * Security.framework's kSecAccessControlUserPresence for OS-level protection. */ export declare function runEnvRestore(options: EnvRestoreOptions): Promise; //# sourceMappingURL=env-restore.d.ts.map