export declare type Index = string | number; export declare type StepIndex = { index: Index; }; export declare type Step = string | number | StepIndex; export declare type Location = Array; export declare const isIndex: (value: unknown) => value is Step; export declare const isIndexStep: (value: unknown) => value is StepIndex; export declare const isStep: (value: unknown) => value is Step; export declare const isLocation: (value: unknown) => value is Location; export declare const indexAsString: (index: Index) => string; export declare const stepAsString: (step: Step) => string; export declare const locationAsString: (location: Location, separator?: string) => string; //# sourceMappingURL=Location.d.ts.map