import type { JSONSchema7 } from 'json-schema'; import type { IExecuteFunctions } from 'n8n-workflow'; import type { z } from 'zod'; export declare function generateSchema(schemaString: string): JSONSchema7; export declare function convertJsonSchemaToZod(schema: JSONSchema7): T; export declare function throwIfToolSchema(ctx: IExecuteFunctions, error: Error): void;