import DashRepresentation from './DashRepresentation';
import DashRepresentationTypeDiscriminator from './DashRepresentationTypeDiscriminator';
/**
 * @export
 * @class SpriteRepresentation
 */
export declare class SpriteRepresentation extends DashRepresentation {
    /**
     * Discriminator property for DashRepresentation
     * @type {string}
     * @memberof SpriteRepresentation
     */
    readonly typeDiscriminator: DashRepresentationTypeDiscriminator;
    /**
     * UUID of an encoding (required)
     * @type {string}
     * @memberof SpriteRepresentation
     */
    encodingId?: string;
    /**
     * UUID of a stream (required)
     * @type {string}
     * @memberof SpriteRepresentation
     */
    streamId?: string;
    /**
     * UUID of a Sprite (required)
     * @type {string}
     * @memberof SpriteRepresentation
     */
    spriteId?: string;
    /**
     * Path to sprite segments. Will be used as the representation id in the manifest. (required)
     * @type {string}
     * @memberof SpriteRepresentation
     */
    segmentPath?: string;
    constructor(obj?: Partial<SpriteRepresentation>);
}
export default SpriteRepresentation;
