import { JSONBox, JSONPath, type JSONBoxEntry, type JSONNode } from '@redneckz/json-op'; export type JSONBoxEntryFlatMapper = (entry: JSONBoxEntry) => JSONBoxEntry[]; export declare const NO_ENTRIES: JSONBoxEntry[]; export declare const flatMapSlots: (mapper: (defaultMapper: JSONBoxEntryFlatMapper) => JSONBoxEntryFlatMapper) => { (node: JSONNode | JSONBox, path?: JSONPath.JSONPath | undefined): JSONNode; fn: (box: JSONBox, path?: JSONPath.JSONPath | undefined) => JSONBox; };