/** Conservatively estimate a detached string's retained UTF-8/UTF-16 storage. */ export declare function estimateRetainedStringBytes(value: string): number; /** * Copy a string through its UTF-16 code units so a cached slice or rope cannot * retain an unaccounted parent allocation. */ export declare function detachRetainedString(value: string): string; //# sourceMappingURL=retained-string.d.ts.map