export declare const RESPONSE_LOG_LENGTH = 100; /** * Converts a value to a best-effort JSON string for logging, removing noisy * function properties from cloneable objects when possible. * * Falls back to `String(value)` when JSON serialization returns `undefined` * or throws (for example, for functions, symbols, or circular structures). * * @param value - The value to stringify. * @param multiline - If true, formats JSON output with indentation. Defaults to false. * @returns A string representation suitable for logging. */ export declare function simpleStringify(value: any, multiline?: boolean): string; /** * Converts the result from a JavaScript evaluation in the remote debugger * into a usable format. Handles errors, serialization, and cleans up noisy * function properties. * * @param res - The raw result from the remote debugger's JavaScript evaluation. * @returns The cleaned and converted result value. * @throws Error if the result is undefined, has an unexpected type, or contains * an error status code. */ export declare function convertJavascriptEvaluationResult(res: any): any; //# sourceMappingURL=javascript.d.ts.map