import { JSONBoxDefault, JSONPath, type JSONBox, type JSONNode } from '@redneckz/json-op'; export declare const box: (_: JSONNode | undefined) => JSONBox; export declare class JSONContentBox extends JSONBoxDefault { size(): number; entries(): Array<[p: JSONPath.JSONPathElement, child: JSONBox]>; get(p?: JSONPath.JSONPathElement): JSONBox; set(p: JSONPath.JSONPathElement | undefined, child: JSONNode): JSONBox; }