import { Step } from './step'; export declare class LocationPath { absolute: boolean; steps: Step[]; constructor(abs: boolean, steps: Step[]); toString(): string; }