import { StateStorage } from '@etherspot/prime-sdk';
import { NetworkNames } from './network';
export interface GatewayOptions {
    networks: NetworkNames[];
    accountAddress?: string;
    sponsor?: string;
    stateStorage?: StateStorage;
    bundlerApiKey?: string;
}
export interface PaymasterApi {
    paymasterApiUrl?: string;
    api_key: string;
    context?: any;
}
