import { Decoder } from "./utils"; import { InboundTrackSample as OutputInboundTrackSample } from "./OutputSamples"; import { AttachmentDecoder } from "./utils"; import { ClientSample_PeerConnectionSample_InboundTrackSample as InputInboundTrackSample } from "./InputSamples"; export declare class InboundTrackDecoder implements Decoder { readonly id: string; private readonly _attachmentsDecoder; private _visited; private readonly _timestampDecoder; private readonly _idDecoder; private readonly _kindDecoder; private readonly _scoreDecoder; private readonly _scoreReasonsDecoder; private _actualValue; constructor(id: string, _attachmentsDecoder: AttachmentDecoder); get visited(): boolean; reset(): void; decode(input: InputInboundTrackSample): OutputInboundTrackSample | undefined; get actualValue(): OutputInboundTrackSample | undefined; set actualValue(sample: OutputInboundTrackSample | undefined); } //# sourceMappingURL=InboundTrackDecoder.d.ts.map