File size: 362 Bytes
bc20498
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import type { GroupedEvents, MeltComponentEvents } from '../../internal/types.js';
export declare const toastEvents: {
    content: readonly ["pointerenter", "pointerleave", "focusout"];
    close: readonly ["click", "keydown"];
};
export type ToastEvents = GroupedEvents<typeof toastEvents>;
export type ToastComponentEvents = MeltComponentEvents<ToastEvents>;