import { type ReactElement } from 'react'; import { type Chain } from 'viem'; import type { KryptogoKitProviderProps } from '../src/components/KryptogoKitProvider/KryptogoKitProvider'; import type { WalletList } from '../src/wallets/Wallet'; export declare function renderWithProviders(component: ReactElement, options?: { chains?: readonly [Chain, ...Chain[]]; mockWallets?: WalletList; props?: Omit; }): any;