import { Range } from "../types";
import { SourceLocation } from "../types/source-location";
export declare function raise(position: {
    loc: SourceLocation;
    range: Range;
}, message: string): never;
