import { JsonRpcSigner } from 'ethers'; import { z } from 'zod'; import { EvmWalletRole } from '@halliday-sdk/payments'; declare const Address: z.ZodString; type Address = z.infer; declare function connectSigner(getSigner: (address?: Address) => Promise, ownerFunderDisplay: "HIDE"): Omit; declare function connectSigner(getSigner: (address?: Address) => Promise, ownerFunderDisplay?: "SHOW"): EvmWalletRole; export { connectSigner };