export type ActiveContext = { workspaceId?: string; workspaceName?: string; workspaceSlug?: string; projectId?: string; projectName?: string; projectSlug?: string; funnelId?: string; funnelName?: string; funnelSlug?: string; }; export declare function saveAuthToken(token: string, configPath: string): Promise; export declare function loadAuthToken(configPath: string): Promise; export declare function clearAuthToken(configPath: string): Promise; export declare function saveActiveContext(configPath: string, active: ActiveContext): Promise; export declare function loadActiveContext(configPath: string): Promise; export declare function clearActiveContext(configPath: string): Promise; export declare function getDefaultAuthConfigPath(): string;