import type { CanonicalListing } from './types'; export interface MarketplaceFetchLikeResponse { ok: boolean; status: number; json(): Promise; } export type MarketplaceFetchLike = (input: string, init?: RequestInit) => Promise; export declare function loadMarketplaceListingsFromServer(baseUrl: string, fetchImpl?: MarketplaceFetchLike): Promise; //# sourceMappingURL=marketplace-source.d.ts.map