import { NubDetail } from "./types/detail.js"; import { MagicEventBase } from "@chasemoskal/magical"; type Any = NubDetail.Any; export declare class NubCauseEvent extends MagicEventBase { static readonly type = "nub_cause"; static readonly target: (target: EventTarget) => { dispatch(detail: NubDetail.Any, options?: Partial | undefined): void; listen(listener: (event: NubCauseEvent) => void, options?: boolean | AddEventListenerOptions | undefined): () => void; }; } export {};