import type { HttpTransport, HttpTransportConfig } from './http.js';
type UTXOHttpTransportConfig = HttpTransportConfig & {
includeChainToURL?: boolean;
apiKey?: string;
};
export declare function utxo(url?: string, config?: UTXOHttpTransportConfig): HttpTransport;
export {};