export declare type AsyncCustomEventDetail = { readonly eventData: TEventData; readonly onResolve: (data: TResolveData) => void; readonly onReject: (reason: TRejectReason) => void; }; export declare type AsyncCustomEvent = CustomEvent>;