import { Signer } from "ethers";
import { Provider } from "@ethersproject/providers";
import type { IUnderlyingBalance } from "./IUnderlyingBalance";
export declare class IUnderlyingBalanceFactory {
static connect(address: string, signerOrProvider: Signer | Provider): IUnderlyingBalance;
}