import type { Command, CommandGenerator, CommandOptions } from '../../types';
interface YouTubeCommandOptions extends CommandOptions {
    type?: 'summary' | 'transcript' | 'plan' | 'review' | 'custom';
    duration?: 'short' | 'medium' | 'full';
    format?: 'markdown' | 'json' | 'text';
}
export declare class YouTubeCommand implements Command {
    private config;
    constructor();
    execute(query: string, options: YouTubeCommandOptions): CommandGenerator;
}
export {};
