import type { StoredAuthKey } from "./types.js"; type AuthKeyStoreOptions = { homeDir?: string; authRelativePath?: string; }; export declare function getAuthKeyPath(options?: AuthKeyStoreOptions): string | null; export declare function persistAuthKey(key: string, keyId: string | undefined | null, hardwareUuid: string, options?: AuthKeyStoreOptions): string | null; export declare function readStoredAuthKey(options?: AuthKeyStoreOptions): StoredAuthKey | null; export {}; //# sourceMappingURL=auth-key-store.d.ts.map