export declare function getFixturePath(url: string): string; /** * Get file from the cache folder or download it from the URL */ export declare function getFixtureFile(url: string): Promise>; export declare function getFixtureFileReadStream(url: string): ReadableStream>; export declare function getFixtureFileWriteStream(url: string): WritableStream>; export type PbfFixture = { url: string; bbox: { bottom: number; top: number; left: number; right: number; }; nodesWithTags: number; nodes: number; ways: number; relations: number; node0: { lat: number; lon: number; id: number; }; way0: number; relation0: number; uniqueStrings: number; primitiveGroups: number; }; export declare const AllPBFs: Record; /** * A subset of the PBFs that we want to use for current tests. Do not check in changes to this list as it will cause CI to * attempt to download PBFs that are not checked into the repository. */ export declare const PBFs: Record; //# sourceMappingURL=fixtures.d.ts.map