import type * as Ast from "../../ast/ast"; import type { WriterContext } from "../Writer"; export declare function writeValue(val: Ast.Literal, wCtx: WriterContext): string; export declare function writePathExpression(path: Ast.Id[]): string; export declare function writeExpression(f: Ast.Expression, wCtx: WriterContext): string; export declare function writeTypescriptValue(val: Ast.Literal | undefined): string | undefined;