import { NodeLocation } from "./NodeLocation"; /** * An error thrown due to a syntax error or other issue with the code. * @group Utilities */ export declare class CodeError extends Error { readonly description: string; readonly location: NodeLocation; constructor(description: string, location: NodeLocation); } //# sourceMappingURL=CodeError.d.ts.map