export type EventOfType = Extract>; /** * This wrapper around CustomEvent provides more descriptive type information. By using this class, the `type` property * of the CustomEvent will be typed as a string literal – this allows [TypedEventTarget] to provide more useful type * checking of events. */ export declare class TypedCustomEvent extends CustomEvent { readonly type: N; constructor(type: N, detail: T, eventInitDict?: Omit, "detail">); } //# sourceMappingURL=TypedCustomEvent.d.ts.map