/** * Module Help Formatter * * Formats TouchDesigner module help information with token optimization. * Used by GET_MODULE_HELP tool. */ import type { ModuleHelp } from "../../../gen/endpoints/TouchDesignerAPI.js"; import type { FormatterOptions } from "./responseFormatter.js"; /** * Format module help result */ export declare function formatModuleHelp(data: ModuleHelp | undefined, options?: FormatterOptions): string;