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