export type DelegateMixin = typeof import("../types/DelegateMixinTypes").DelegateMixinImplementation; export const DelegateMixin: typeof import("../types/DelegateMixinTypes").DelegateMixinImplementation; export type DelegateEvent = { /** * - Type of event */ type: string; /** * - Event arguments */ handler: (event: Event) => unknown; opts?: boolean | AddEventListenerOptions; };