/**
 * @author WMXPY
 * @namespace SourceMap_LocationFinder
 * @description Raw
 */
import * as EST from "estree";
import { BaseSourceMapLocationFinder } from "./base";
export declare class RawSourceMapLocationFinder extends BaseSourceMapLocationFinder {
    static fromEmpty(): RawSourceMapLocationFinder;
    private constructor();
    findSourceLocation(position: EST.Position, _node: EST.Node): EST.Position;
}
