/**
 * Custom player download information
 * @export
 * @class CustomPlayerBuildDownload
 */
export declare class CustomPlayerBuildDownload {
    /**
     * The link to download the custom built player (required)
     * @type {string}
     * @memberof CustomPlayerBuildDownload
     */
    downloadLink?: string;
    /**
     * Until this date the download link is valid and can be downloaded. (required)
     * @type {Date}
     * @memberof CustomPlayerBuildDownload
     */
    expiresAt?: Date;
    constructor(obj?: Partial<CustomPlayerBuildDownload>);
}
export default CustomPlayerBuildDownload;
