/** Default pixel-office server used when the user passes no --url. */ export declare const DEFAULT_BASE_URL = "https://app.pixeloffice.org"; export interface UserConfig { /** Pixel-office base URL (no trailing slash), e.g. https://app.pixeloffice.org */ baseUrl?: string; /** Personal-access token (pat_…) minted by `autodev login`. */ token?: string; } /** Absolute path to the user login config (~/.autodev/config.json). */ export declare function userConfigPath(): string; /** Load the stored login config; returns {} if none/invalid. */ export declare function loadUserConfig(): UserConfig; /** Persist the login config owner-only (0600). Never logged. */ export declare function saveUserConfig(cfg: UserConfig): void;