/** * @copyright * (c) 2025 netTrek GmbH & Co. KG – All rights reserved. * * This source code is part of the C2PA-HLS integration library. */ import { Interval } from '@flatten-js/interval-tree'; import { C2paManifestHelper } from './C2paManifestHelper'; import { AbstractC2PABridge, type C2PAConfig } from './C2paBridge'; export declare class C2paMp4Bridge extends AbstractC2PABridge { #private; constructor(config: C2PAConfig | undefined, url: string); getC2PAMetaByTimeCode(timeCode: number): C2paManifestHelper | null; getTamperedWithIntervals(): Interval[]; dispose(): void; protected onRuntimeReady(): Promise; }