export interface SyncConfig { syncUrl: string; syncToken: string; } /** Read sync config if it exists */ export declare function getSyncConfig(): SyncConfig | null; export declare function runLogin(): Promise;