import type { Client } from "viem";
import { BaseError } from "./base.js";
export declare class IncompatibleClientError extends BaseError {
    name: string;
    constructor(expectedClient: string, method: string, client: Client);
}
export declare class InvalidRpcUrlError extends BaseError {
    name: string;
    constructor(rpcUrl?: string);
}
export declare class ChainNotFoundError extends BaseError {
    name: string;
    constructor();
}
