import { PaymasterAPI } from './PaymasterAPI';
export interface ClientConfig {
    entryPointAddress: string;
    registryAddress: string;
    bundlerUrl: string;
    walletAddres?: string;
    paymasterAPI?: PaymasterAPI;
}
