import { EventbriteClient } from '../eventbrite/client.js'; export declare class CopyEventTool { private client; constructor(client: EventbriteClient); getToolDefinition(): { name: string; description: string; inputSchema: { type: string; properties: { event_id: { type: string; description: string; }; name: { type: string; description: string; }; start: { type: string; description: string; properties: { timezone: { type: string; }; utc: { type: string; }; }; }; end: { type: string; description: string; properties: { timezone: { type: string; }; utc: { type: string; }; }; }; }; required: string[]; }; }; execute(args: any): Promise; } //# sourceMappingURL=copy-event.d.ts.map