import { Command } from '@commander-js/extra-typings'; import { Chapter } from '../langs'; export declare const compileToChoices: readonly ["ast", "binary", "debug", "json"]; export declare const getSVMCCommand: () => Command<[string], { chapter: Chapter; compileTo: "ast" | "binary" | "debug" | "json"; out?: string | undefined; internals: string[]; }, {}>;