import { Client } from "../../instances/structures"; type EventOptions = (client: Client, ...args: any) => unknown; export declare class EventBuilder { name: string; once: boolean; private callback; run: EventOptions; constructor(once?: boolean); /** * Set the event name * @param name Name of the event */ setName(name: string): this; /** * Set the event callback * @param callback Callback of the event * @returns */ setCallback(callback: EventOptions): this; } export {}; //# sourceMappingURL=EventBuilder.d.ts.map