/** * @file Events - KronkEvent * @module kronk/events/KronkEvent */ import type { KronkEventName } from '@flex-development/kronk'; /** * An event. * * @category * events * * @class */ declare class KronkEvent { id: KronkEventName; /** * Create a new kronk event. * * @see {@linkcode KronkEventName} * * @param {KronkEventName} id * The unique id representing the event */ constructor(id: KronkEventName); /** * Get the event as a human-readable string. * * @public * @instance * * @return {string} * String representation of `this` event */ toString(): string; } export default KronkEvent;