import { RecordingContext } from "../recorder/RecordingContext.js"; import { IInterceptor } from "../types/interceptor.js"; import { IStaticFileWithLocalBody } from "../types/recordables.js"; export declare class StaticContentProvider implements IInterceptor { private onEvent; private _context; private sources; private mutationObserver; private persitedStaticFileUrls; constructor(onEvent: (event: IStaticFileWithLocalBody) => void, _context: RecordingContext); stop(): void; start(): void; private synchronizeTree; private gatherStaticContentUrls; private intercept; private onMutation; }