import { EventDiscountCheck, UsedEventDiscount } from '../models/Event'; import { Client } from '../types/internal'; export declare const createEventDiscount: (client: Client) => { check: (token: string) => Promise; use: (token: string) => Promise; };