/**
 * @class
 * @description Object that stores the plugin settings.
 * @exports Options
 */
export default class Options {
    accountCode: string;
    token?: string;
    originCode: string;
    applicationCode: string;
    resource: string;
    isLive: boolean;
    videoId?: string;
    overrideManifest: boolean;
    updateTime: number;
    reportTime: number;
    debug: boolean;
    isDev: boolean;
    preWarm: number;
    /**
     * Constructs options object.
     * @param {constructionOptions} options JSON with the options to construct the balancer.
     */
    constructor(options: constructionOptions);
}
