export interface AVCDecoderConfigurationRecord {
    configurationVersion: number;
    avcProfileIndication: number;
    profileCompatibility: number;
    AVCLevelIndication: number;
    avcHeaderLengthSize: number;
    spsUnits: Uint8Array[];
    ppsUnits: Uint8Array[];
    chromaFormat: number;
    bitDepthLuma: number;
    bitDepthChroma: number;
    spsExtUnits: Uint8Array[];
    dataBytes: Uint8Array;
}
export declare function ParseAVCDecoderConfigurationRecord(data: ArrayBuffer | Uint8Array | undefined | null): AVCDecoderConfigurationRecord | undefined;
export declare function GetVideoCodecStringFromAVCDecoderConfigurationRecord(avcDecoderConfigurationRecord: AVCDecoderConfigurationRecord): string;
export declare function GetVideoCodecStringFromProfileLevel(codec: string, profile: number, level: number): string;
//# sourceMappingURL=avc_decoder_configuration_record_parser.d.ts.map