import { ICommand, CommandContext, CommandOptionType } from '../../types/index'; export declare class CodeCommand implements ICommand { name: string; description: string; usage: string; aliases: string[]; options: ({ name: string; type: CommandOptionType; description: string; alias: string; default?: undefined; } | { name: string; type: CommandOptionType; description: string; default: boolean; alias: string; })[]; execute(context: CommandContext): Promise; private handleGenerate; private handleBuild; private handleWatch; private handleClean; private showHelp; private parseOptions; validate(context: CommandContext): Promise; } export declare const codeCommand: CodeCommand;