/** @format */
/**
 * Represents the header of a VP8 frame.
 */
export declare class VP8FrameHeader {
    /** Indicates if the frame is a key frame. */
    keyFrame: boolean;
    /** The profile of the VP8 frame. */
    profile: number;
    /** The show value of the VP8 frame. */
    show: number;
    /** The length of the partition in the VP8 frame. */
    partitionLength: number;
}
