/** * Store the encryption key in the OS keychain. * - macOS: Keychain * - Linux: libsecret * - Windows: Credential Vault */ export declare function storeKey(repoId: string, key: Buffer): Promise; /** * Retrieve the encryption key from the OS keychain. */ export declare function retrieveKey(repoId: string): Promise; /** * Remove the stored key (for password change or cleanup). */ export declare function removeKey(repoId: string): Promise; //# sourceMappingURL=keychain.d.ts.map