import { EventAction } from "./EventAction"; export declare class Delegate { constructor(); add(action: EventAction, once?: boolean): void; raise(args: T): void; remove(action: EventAction): void; }