import type { CanonicalListing } from './types'; export interface MarketplaceFetchLikeResponse { ok: boolean; status: number; json(): Promise; /** Required for the FlatBuffer record-stream listing path (real fetch has it). */ arrayBuffer?(): Promise; } export type MarketplaceFetchLike = (input: string, init?: RequestInit) => Promise; export declare function loadMarketplaceListingsFromServer(baseUrl: string, fetchImpl?: MarketplaceFetchLike): Promise; //# sourceMappingURL=marketplace-source.d.ts.map