import { MFXWritableStream } from "../../stream";
/**
 * Probes codec information about a WebM container
 * @group Decode
 */
export declare class WebMContainerProbe extends MFXWritableStream<Uint8Array> {
    get identifier(): string;
    getCodec(): Promise<string>;
    constructor();
}
