import { CreateTransportErrorType, FallbackTransport, FallbackTransportConfig, Transport } from 'viem'; export type ErrorType = Error & { name: name; }; export type FallbackTransportErrorType = CreateTransportErrorType | ErrorType; export declare function fallbackRpcTransport(transports_: transports, config?: Omit): FallbackTransport;