import type { TarEntry } from './index.js'; import type { Source, Transform } from 'it-stream-types'; import type { SupportedEncodings } from 'uint8arrays/to-string'; export interface ExtractOptions { highWaterMark?: number; filenameEncoding?: SupportedEncodings; } export interface Derp { header: any; body: Source; } export declare function extract(options?: ExtractOptions): Transform, AsyncGenerator>; //# sourceMappingURL=extract.d.ts.map