import type { OperationResult, ParsedConfig } from './types'; export interface SyncOptions { config: ParsedConfig; target?: string; dryRun?: boolean; force?: boolean; } export interface CheckOptions { config: ParsedConfig; target?: string; } export declare function syncContext(options: SyncOptions): Promise; export declare function checkContext(options: CheckOptions): Promise; export declare function doctorContext(options: CheckOptions): Promise;