import type { SyncConfig } from "./core/config.js"; import type { StorageEngine } from "./core/storage/index.js"; import { SyncRegistry } from "./core/sync/index.js"; export interface ParsedGlobalOptions { storagePath?: string; configPath?: string; filteredArgs: string[]; } export declare function parseGlobalOptions(args: string[]): ParsedGlobalOptions; export declare function createStorageEngine(cliStoragePath?: string, cliConfigPath?: string): StorageEngine; export interface SyncRegistryResult { syncRegistry: SyncRegistry | null; syncConfig: SyncConfig | null; } /** * Create a SyncRegistry from configuration. * Registers all enabled sync services based on config. */ export declare function createSyncRegistry(storagePath: string, cliConfigPath?: string): Promise; export declare function getMcpHelpText(): string; //# sourceMappingURL=bootstrap.d.ts.map