export declare const ERROR_EVENT: "error"; export interface ErrorEventDetail { error: Error; code?: number; } export interface PlayerErrorEvent extends CustomEvent { type: typeof ERROR_EVENT; } //# sourceMappingURL=ErrorEvent.d.ts.map