import { EventbriteClient } from '../eventbrite/client.js'; export declare class CreateMultipleInventoryTiersTool { private client; constructor(client: EventbriteClient); getToolDefinition(): { name: string; description: string; inputSchema: { type: "object"; properties: { event_id: { type: string; description: string; }; inventory_tiers: { type: string; description: string; items: { type: string; properties: { name: { type: string; }; quantity: { type: string; }; price: { type: string; }; sales_start: { type: string; }; sales_end: { type: string; }; minimum_quantity: { type: string; }; maximum_quantity: { type: string; }; }; }; }; }; required: string[]; }; }; execute(args: { event_id: string; inventory_tiers: any[]; }): Promise; } //# sourceMappingURL=create-multiple-inventory-tiers.d.ts.map