import { SWFFrame } from './SWFFrame'; import { EagerlyParsedDictionaryEntry } from './EagerlyParsedDictionaryEntry'; import { Bounds, DictionaryEntry, ABCBlock } from '@awayjs/graphics'; export declare class SWFFile { hash: string; compression: number; swfVersion: number; fpVersion: string; url: string; useAVM1: boolean; backgroundColor: number; bounds: Bounds; frameRate: number; frameCount: number; attributes: any; sceneAndFrameLabelData: any; bytesLoaded: number; bytesTotal: number; pendingUpdateDelays: number; framesLoaded: number; frames: SWFFrame[]; abcBlocks: ABCBlock[]; dictionary: DictionaryEntry[]; fonts: { name: string; style: string; id: number; }[]; data: Uint8Array; env: any; symbolClassesMap: string[]; symbolClassesList: { id: number; className: string; }[]; eagerlyParsedSymbolsMap: EagerlyParsedDictionaryEntry[]; eagerlyParsedSymbolsList: EagerlyParsedDictionaryEntry[]; constructor(); mapSWFVersionToFPVersion(): void; } //# sourceMappingURL=SWFFile.d.ts.map