import CacheControl from './CacheControl';
/**
 * @export
 * @class CacheControlSettingsSegments
 */
export declare class CacheControlSettingsSegments {
    /**
     * Cache control settings for init segment.
     * @type {CacheControl}
     * @memberof CacheControlSettingsSegments
     */
    initSegment?: CacheControl;
    /**
     * Cache control settings for media segment.
     * @type {CacheControl}
     * @memberof CacheControlSettingsSegments
     */
    mediaSegment?: CacheControl;
    constructor(obj?: Partial<CacheControlSettingsSegments>);
}
export default CacheControlSettingsSegments;
