export type ParsedTorrent = { name: string; path?: string; announce: string | string[]; private?: boolean; created: Date; createdBy: string; infoHash: string; infoBuffer: Uint8Array; infoHashBuffer: Uint8Array; magnetURI: string; urlList: string[]; 'creation date': number; 'created by': string; comment: string | ArrayBufferView; length: number; files: (File[] | Blob[]) & { path: string; downloaded: any; done: boolean; name: string; length: number; offset: number; }[]; info: { files: { length: number; path?: string; 'path.utf-8'?: string; }[]; name: string; 'piece length': number; pieces: any[]; private?: boolean; }; pieceLength: number; lastPieceLength: number; pieces: any[]; }; export declare const fixtures: { leaves: { contentPath: string; torrentPath: string; content: Buffer; torrent: Buffer; parsedTorrent: any; magnetURI: any; }; alice: { contentPath: string; torrentPath: string; content: Buffer; torrent: Buffer; parsedTorrent: any; magnetURI: any; }; folder: { contentPath: string; torrentPath: string; torrent: Buffer; parsedTorrent: any; magnetURI: any; }; numbers: { contentPath: string; torrentPath: string; torrent: Buffer; parsedTorrent: any; magnetURI: any; }; lotsOfNumbers: { contentPath: string; torrentPath: string; torrent: Buffer; parsedTorrent: any; magnetURI: any; }; bunny: { torrentPath: string; torrent: Buffer; parsedTorrent: any; magnetURI: any; }; sintel: { torrentPath: string; torrent: Buffer; parsedTorrent: any; magnetURI: any; }; leavesMetadata: { contentPath: string; torrentPath: string; content: Buffer; torrent: Buffer; parsedTorrent: any; magnetURI: any; }; corrupt: { torrentPath: string; torrent: Buffer; }; blocklist: { path: string; gzipPath: string; }; }; export default fixtures; //# sourceMappingURL=index.d.ts.map