import DashMuxingRepresentation from './DashMuxingRepresentation';
import DashOnDemandRepresentationType from './DashOnDemandRepresentationType';
import DashRepresentationTypeDiscriminator from './DashRepresentationTypeDiscriminator';
/**
 * @export
 * @class DashMp4Representation
 */
export declare class DashMp4Representation extends DashMuxingRepresentation {
    /**
     * Discriminator property for DashRepresentation
     * @type {string}
     * @memberof DashMp4Representation
     */
    readonly typeDiscriminator: DashRepresentationTypeDiscriminator;
    /**
     * Path to the MP4 file (required)
     * @type {string}
     * @memberof DashMp4Representation
     */
    filePath?: string;
    /**
     * The type of the dash representation
     * @type {DashOnDemandRepresentationType}
     * @memberof DashMp4Representation
     */
    type?: DashOnDemandRepresentationType;
    constructor(obj?: Partial<DashMp4Representation>);
}
export default DashMp4Representation;
