import { Command } from 'commander'; import { BaseCommand } from './base'; interface ShareOptions { all?: boolean; name?: string; outputDir?: string; } export declare class ShareCommand extends BaseCommand { execute(agentNames: string[], options?: ShareOptions): void; createCommand(): Command; } export default ShareCommand; //# sourceMappingURL=shareCommand.d.ts.map