import { Command } from 'commander'; import type { SkillRegistryProvider } from '../skills/types.js'; import type { SqliteDatabase } from '../db/adapter.js'; export interface SkillsCommandDependencies { withDatabase: (operation: (database: SqliteDatabase) => T | Promise) => Promise; provider?: SkillRegistryProvider; } export declare function registerSkillsCommands(cli: Command, dependencies: SkillsCommandDependencies): void; //# sourceMappingURL=skills.d.ts.map