/** * Migration utility to convert Shortcuts to Contexts * Part of Universal Context Management System implementation */ import type { ICoreEngine } from '../interfaces.js'; import type { ContextEngine } from '../context-engine.js'; export interface MigrationOptions { source?: 'local' | 'global'; dryRun?: boolean; } export interface MigrationResult { totalShortcuts: number; migrated: number; skipped: number; errors: Array<{ shortcut: string; error: string; }>; } /** * Migrate all shortcuts to contexts */ export declare function migrateShortcutsToContexts(engine: ICoreEngine, contextEngine: ContextEngine, options?: MigrationOptions): Promise; /** * Migrate a single shortcut to context */ export declare function migrateShortcutToContext(shortcutId: string, engine: ICoreEngine, contextEngine: ContextEngine, options?: MigrationOptions): Promise; //# sourceMappingURL=shortcut-to-context.d.ts.map