declare namespace contentPath_d_exports { export { Part, Path, append, current, make, serialize }; } type Part = { type: "CustomType" | "Widget" | "SharedSlice" | "Slice" | "LegacySlice" | "GroupItem" | "primary" | "items" | "RepeatableItem"; key: string; }; type Path = ReadonlyArray; declare function serialize(path: Path): string; declare function current(path: Path): Part | undefined; declare function append(path: string, strElement: string): string; declare function make(...entries: (Pick & Partial>)[]): Path; //#endregion export { Path, contentPath_d_exports }; //# sourceMappingURL=contentPath.d.ts.map