import type { Chain } from "viem";
import { BaseError } from "./base.js";
export declare class EntryPointNotFoundError extends BaseError {
    name: string;
    constructor(chain: Chain, entryPointVersion: any);
}
export declare class InvalidEntryPointError extends BaseError {
    name: string;
    constructor(chain: Chain, entryPointVersion: any);
}
