import type { Provider } from "../types";
/**
 * Create Esplora-compatible provider bound to baseUrl.
 * Uses GET/POST helpers with timeouts and maps to domain errors.
 */
export declare function esplora(baseUrl: string, opts?: {
    timeoutMs?: number;
}): Provider;
