import { Operation, OperationType } from '@nosana/sdk'; import TaskManager from '../TaskManager.js'; type JSONValue = string | number | boolean | null | JSONValue[] | { [k: string]: JSONValue; }; interface MarkerSpec { key: string; arrayHandler?: (raw: JSONValue, chunked: boolean) => JSONValue[]; objectHandler?: (raw: JSONValue) => Record; } export declare const DefaultCollectionMarkers: MarkerSpec[]; export declare function transformCollections(this: TaskManager, op: Operation, overwrite?: boolean): Operation; export {};