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