import type { WatchSource } from "vue"; import type { Component, VNodeChild } from "vue"; type DefaultRenderProps = { name: string; toolCallId: string; parameters: unknown; status: "inProgress" | "executing" | "complete"; result: string | undefined; }; export declare function useDefaultRenderTool(config?: { render?: ((props: DefaultRenderProps) => VNodeChild) | Component; }, deps?: WatchSource[]): void; export {}; //# sourceMappingURL=use-default-render-tool.d.ts.map