/** @format */
/**
 * Represents the header of a VP8 picture.
 */
export declare class VP8PictureHeader {
    /**
     * The width of the picture in pixels.
     * @type {number}
     */
    width: number;
    /**
     * The height of the picture in pixels.
     * @type {number}
     */
    height: number;
    /**
     * The horizontal scaling factor.
     * @type {number}
     */
    xscale: number;
    /**
     * The vertical scaling factor.
     * @type {number}
     */
    yscale: number;
    /**
     * The color space of the picture. 0 represents YCbCr.
     * @type {number}
     */
    colorspace: number;
    /**
     * The clamp type of the picture.
     * @type {number}
     */
    clampType: number;
}
