/**
 * A definition of a user-defined tool to use for a DonobuFlow.
 */
export type CustomTool = {
    readonly name: string;
    readonly description: string;
    readonly inputSchema: Record<string, unknown>;
    readonly javascript: string;
};
//# sourceMappingURL=CustomTool.d.ts.map