/**
 * Property name (if the parent is an object) or index number (if the parent is an array).
 */
export declare type PathElement = string | number;
/**
 * Path from a parent to a child.
 */
export declare type Path = ReadonlyArray<string | number>;
/**
 * Path from a parent to a child (writable).
 */
export declare type WritablePath = (string | number)[];
