import { type SpecificType } from "../../../.."; export declare const mock_shortCustomEvents: { str: StringConstructor; null: null; unionStr: SpecificType<"male" | "female">; union: (StringConstructor | SpecificType<0 | 1 | 2> | null)[]; }; export declare const mock_fullCustomEvents: { bubbles: { detailType: StringConstructor; options: { bubbles: true; }; }; capturePhase: { detailType: null; options: { capturePhase: true; }; }; bubbles_capturePhase: { detailType: (StringConstructor | NumberConstructor)[]; options: { bubbles: true; capturePhase: true; }; }; bubbles_composed: { detailType: SpecificType<"male" | "female">; options: { bubbles: true; composed: true; }; }; capturePhase_composed: { detailType: (StringConstructor | SpecificType<0 | 1 | 2> | null)[]; options: { capturePhase: true; composed: true; }; }; bubbles_capturePhase_composed: { detailType: BooleanConstructor; options: { bubbles: true; capturePhase: true; composed: true; }; }; }; export declare const mock_customEvents: { bubbles: { detailType: StringConstructor; options: { bubbles: true; }; }; capturePhase: { detailType: null; options: { capturePhase: true; }; }; bubbles_capturePhase: { detailType: (StringConstructor | NumberConstructor)[]; options: { bubbles: true; capturePhase: true; }; }; bubbles_composed: { detailType: SpecificType<"male" | "female">; options: { bubbles: true; composed: true; }; }; capturePhase_composed: { detailType: (StringConstructor | SpecificType<0 | 1 | 2> | null)[]; options: { capturePhase: true; composed: true; }; }; bubbles_capturePhase_composed: { detailType: BooleanConstructor; options: { bubbles: true; capturePhase: true; composed: true; }; }; str: StringConstructor; null: null; unionStr: SpecificType<"male" | "female">; union: (StringConstructor | SpecificType<0 | 1 | 2> | null)[]; };