import { StateBase } from './StateBase';
export interface VideoState extends StateBase {
    playerSettings: {
        [key: string]: any;
    };
    personalizations?: {
        [key: string]: any;
    }[];
    cuePoints?: {
        timeAt?: number;
        endAt?: number;
        eventName: string;
        args?: {
            [key: string]: any;
        };
        [key: string]: any;
    }[];
    [key: string]: any;
}
