import type { IEvent } from './IEvent'; /** * Checkes whether the provided instance is an event (implements {@linkcode IEvent}). * @template TEvent The type of event to check, defaults to {@linkcode IEvent}. * @param maybeEvent The value to check if is an event. * @returns Returns `true` if the provided instance implements {@linkcode IEvent}; otherwise `false`. */ export declare function isEvent = IEvent>(maybeEvent: any): maybeEvent is TEvent;