import { CompilerContext } from "../../contexts/compiler.js"; import { Span } from "../internal/index.js"; import { Format, Partial } from "ts-vista"; type CompleteCompileErrorOptions = { context: CompilerContext; span: Span; message: string; }; type CompileErrorOptions = Format>; declare class CompileError extends Error { override name: string; constructor(options: CompileErrorOptions); } export { CompileError, type CompileErrorOptions, type CompleteCompileErrorOptions, type Span }; //# sourceMappingURL=index.d.ts.map