/** @format */
/**
 * Represents all the probabilities associated with one band.
 */
export declare class VP8BandProbas {
    /**
     * An array of Uint8Array representing the probabilities.
     */
    probas: Uint8Array[];
    /**
     * Constructs a new instance of VP8BandProbas.
     */
    constructor();
}
