import { Config } from '../types';
export declare function loadConfig(): Promise<Config>;
export declare function saveConfig(config: Partial<Config>): Promise<void>;
export declare function getDefaultConfig(): Promise<Config>;
export declare function isAuthenticated(): Promise<boolean>;
export declare function requireAuth(): Promise<Config>;
