export interface HHGaslessDeployerConfig {
    contract?: string;
    initArgsPath?: string;
    salt?: string;
    value?: number;
    signer?: any;
    network?: string;
    rpcUrl: any;
    paymaster?: string;
    relayerHub?: string;
    forwarder?: string;
}
export type ContractJson = {
    abi: any;
    bytecode: string;
};
//# sourceMappingURL=types.d.ts.map