import * as ts from "ts-morph";
import { CompilerState } from "../CompilerState";
export declare function compileBooleanLiteral(state: CompilerState, node: ts.BooleanLiteral): "true" | "false";
export declare function compileNumericLiteral(state: CompilerState, node: ts.NumericLiteral): string;
export declare function compileStringLiteral(state: CompilerState, node: ts.StringLiteral | ts.NoSubstitutionTemplateLiteral): string;
