export interface BoundedRetrievalValueFormatOptions{readonly locale:string;readonly invalid:string;readonly truncated:string;readonly maxDepth?:number;readonly maxEntries?:number;readonly maxValues?:number;readonly maxStringLength?:number;} /** * Formats consumer-supplied retrieval metadata within explicit traversal and output bounds. * * The localized sentinels are supplied by the component so this utility stays independent from a * particular element's string slice. The path-local seen set rejects cycles while still allowing * the same acyclic object to appear in two sibling positions. */ export declare function formatBoundedRetrievalValue(value:unknown,options:BoundedRetrievalValueFormatOptions):string;