/** * 24K CLI Configuration * Stores agent credentials locally */ interface Config { apiKey?: string; agentId?: string; agentName?: string; coordinates?: { x: number; y: number; }; apiUrl: string; } export declare function getConfig(): Config; export declare function setConfig(updates: Partial): void; export declare function clearConfig(): void; export declare function isAuthenticated(): boolean; export {};