interface Credentials { access_token: string; refresh_token: string; expires_at?: number; local_agent_keys?: Record; } export declare function loadCredentials(): Credentials | null; export declare function saveCredentials(creds: Credentials): void; export declare function isTokenExpired(): boolean; export declare function clearCredentials(): void; export declare function getLocalAgentKey(agentID: string): string | undefined; export declare function saveLocalAgentKey(agentID: string, apiKey: string): void; export {}; //# sourceMappingURL=credentials.d.ts.map