/** * A helper class to get and set values in a nested object using a string path based on https://datatracker.ietf.org/doc/html/rfc6901 with some modifications to support Triplit path strings. */ export declare class ValuePointer { static Get(data: Record, path: string | Iterable): any; static Set(data: Record, path: string | string[], value: any): void; }