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