/**
 * @export
 * @class CacheControl
 */
export declare class CacheControl {
    /**
     * Cache control for storing data on CDN. Example \"public, max-age=0, no-cache\". Cache control is supported on S3, GCS and Azure output storage providers.
     * @type {string}
     * @memberof CacheControl
     */
    cacheControl?: string;
    constructor(obj?: Partial<CacheControl>);
}
export default CacheControl;
