export type XzScanResult = { maxDictionaryBytes: number; streams: number; blocks: number; hadPadding: boolean; requiredIndexRecords: number; requiredIndexBytes: number; }; export type XzScanOptions = { signal?: AbortSignal; maxIndexRecords?: number; maxIndexBytes?: number; }; export declare function scanXzResourceRequirements(data: Uint8Array, options?: XzScanOptions): XzScanResult | null; //# sourceMappingURL=xzScan.d.ts.map