import type { ValueOf } from '../utils/ValueOf.js';
/**
 * CMCD event types for the 'e' key (event mode).
 *
 * @group CMCD
 *
 * @enum
 *
 * @beta
 */
export declare const CmcdEventType: {
    /**
     * A change in the player state.
     */
    readonly PLAY_STATE: "ps";
    /**
     * An error event.
     */
    readonly ERROR: "e";
    /**
     * A periodic report sent on a time interval.
     */
    readonly TIME_INTERVAL: "t";
    /**
     * A change of the content ID.
     */
    readonly CONTENT_ID: "c";
    /**
     * A change in the application's backgrounded state.
     */
    readonly BACKGROUNDED_MODE: "b";
    /**
     * The player was muted.
     */
    readonly MUTE: "m";
    /**
     * Player unmuted.
     */
    readonly UNMUTE: "um";
    /**
     * The player view was expanded.
     */
    readonly PLAYER_EXPAND: "pe";
    /**
     * The player view was collapsed.
     */
    readonly PLAYER_COLLAPSE: "pc";
};
/**
 * @beta
 */
export type CmcdEventType = ValueOf<typeof CmcdEventType>;
//# sourceMappingURL=CmcdEventType.d.ts.map