import Event from "./Event"; declare namespace openfl.events { /** * A Timer object dispatches a TimerEvent objects whenever the Timer object * reaches the interval specified by the `Timer.delay` property. * */ export class TimerEvent extends Event { /** * Creates an Event object with specific information relevant to * `timer` events. Event objects are passed as parameters to event * listeners. * * @param type The type of the event. Event listeners can access this * information through the inherited `type` * property. * @param bubbles Determines whether the Event object bubbles. Event * listeners can access this information through the * inherited `bubbles` property. * @param cancelable Determines whether the Event object can be canceled. * Event listeners can access this information through the * inherited `cancelable` property. * */ constructor(type: string, bubbles?: boolean, cancelable?: boolean); /** * Defines the value of the `type` property of a `timer` event object. * This event has the following properties: * * | Property | Value | * | --- | --- | * | `bubbles` | `false` | * | `cancelable` | `false`; there is no default behavior to cancel. | * | `currentTarget` | The object that is actively processing the Event object with an event listener. | * | `target` | The Timer object that has reached its interval. | * */ static readonly TIMER = "timer"; /** * Defines the value of the `type` property of a `timerComplete` event * object. * This event has the following properties: * * | Property | Value | * | --- | --- | * | `bubbles` | `false` | * | `cancelable` | `false`; there is no default behavior to cancel. | * | `currentTarget` | The object that is actively processing the Event object with an event listener. | * | `target` | The Timer object that has completed its requests. | * */ static readonly TIMER_COMPLETE = "timerComplete"; override clone(): TimerEvent; override toString(): string; /** * Instructs OpenFL to render after processing of this event completes, if * the display list has been modified. * */ updateAfterEvent(): void; } } export default openfl.events.TimerEvent;