import type { Locations } from "./common.js";
export interface BaseNode extends Locations {
    type: string;
}
