import DashRepresentation from './DashRepresentation';
import DashRepresentationTypeDiscriminator from './DashRepresentationTypeDiscriminator';
/**
 * @export
 * @class DashVttRepresentation
 */
export declare class DashVttRepresentation extends DashRepresentation {
    /**
     * Discriminator property for DashRepresentation
     * @type {string}
     * @memberof DashVttRepresentation
     */
    readonly typeDiscriminator: DashRepresentationTypeDiscriminator;
    /**
     * URL of the referenced VTT file (required)
     * @type {string}
     * @memberof DashVttRepresentation
     */
    vttUrl?: string;
    constructor(obj?: Partial<DashVttRepresentation>);
}
export default DashVttRepresentation;
