import type { JsonToken } from './constants'; /** * Complete an incomplete JSON string. * This will ensure that the last element always has a `"~~"` to indicate it was truncated. * For example, `[1,2,` will be completed to `[1,2,"~~"]` * and `{"aa":"b` will be completed to `{"aa":"b~~"}` */ export declare function completeJson(incompleteJson: string, stack: JsonToken[]): string; //# sourceMappingURL=completeJson.d.ts.map