/** @format */
import { VP8BandProbas } from './vp8-band-probas.js';
/**
 * Struct collecting all frame-persistent probabilities
 */
export declare class VP8Proba {
    /**
     * Segments array initialized with VP8.mbFeatureTreeProbs
     */
    segments: Uint8Array;
    /**
     * Bands array containing VP8BandProbas objects
     * Type: 0=Intra16-AC, 1=Intra16-DC, 2=Chroma, 3=Intra4
     */
    bands: Array<Array<VP8BandProbas>>;
    /**
     * Constructor to initialize bands and segments
     */
    constructor();
}
