import type { User } from '@n8n/db'; import z from 'zod'; import type { ToolDefinition } from '../../mcp.types'; import type { DataTableUserOperations } from '../../../../modules/data-table/data-table-proxy.service'; import type { Telemetry } from '../../../../telemetry'; declare const inputSchema: { dataTableId: z.ZodString; projectId: z.ZodString; columnId: z.ZodString; }; export declare const createDeleteDataTableColumnTool: (user: User, dataTableOps: DataTableUserOperations, telemetry: Telemetry) => ToolDefinition; export {};