import type { FunctionParameter } from "../types.js"; import type { DebuggerCommand } from "./types.js"; export declare function formatValue(value: unknown): string; export declare function getPrimitiveType(param: FunctionParameter): string | null; export declare function coerceArg(raw: string, param: FunctionParameter): unknown; export declare function parseCommandInput(input: string): DebuggerCommand | null;