/** * Base interface for component events. */ export interface ComponentEvent { type: string; payload: unknown; }