export interface SecretStoreOptions { disableKeytar?: boolean; } export interface SecretSettings { openrouterApiKey: string | null; replicateApiKey: string | null; } export declare class KeytarUnavailableError extends Error { constructor(message: string); } export declare function loadSecrets(options?: SecretStoreOptions): Promise; export declare function saveSecrets(secrets: Partial, options?: SecretStoreOptions): Promise; //# sourceMappingURL=secretStore.d.ts.map