import DataType from "./DataType"; export default class PathSegment { readonly dataType: DataType; readonly isArray: boolean; readonly path: string; constructor(dataType: DataType, isArray: boolean, path: string); clone(fieldsToUpdate?: Partial): PathSegment; } //# sourceMappingURL=PathSegment.d.ts.map