import type { ParsedTorrent } from './index.js'; /** * Take a string of JSON, handle the base64 buffers inside. * @returns a parsed torrent */ export declare function revive(torrentJSON: string): ParsedTorrent; export declare function _revive(this: { announce: any; offset?: number; }, k: any, v: any): any; /** * Everything is inline, so you can bundle this file. * * __convert to buffer__ * ```js * const buffer = Buffer.from(base64String, "base64"); * ``` */ export declare const fixtures: { leaves: { torrent: string; contentPath: string; parsedTorrent: string; torrentPath: string; }; folder: { torrent: string; contentPath: string; parsedTorrent: string; torrentPath: string; }; }; export default fixtures; //# sourceMappingURL=base64.d.ts.map