import CacheControl from './CacheControl';
/**
 * @export
 * @class CacheControlSettingsDash
 */
export declare class CacheControlSettingsDash {
    /**
     * Cache control settings for DASH Timeline manifest.
     * @type {CacheControl}
     * @memberof CacheControlSettingsDash
     */
    timelineManifest?: CacheControl;
    /**
     * Cache control settings for DASH Template manifest.
     * @type {CacheControl}
     * @memberof CacheControlSettingsDash
     */
    templateManifest?: CacheControl;
    constructor(obj?: Partial<CacheControlSettingsDash>);
}
export default CacheControlSettingsDash;
