import type { Fcl, FclArgs } from "@rarible/fcl-types"; import type { FlowCurrency } from "../types"; type GetBalanceCode = { cadence: string; args: ReturnType; }; export declare function getBalanceCode(fcl: Fcl, currency: FlowCurrency, address: string): GetBalanceCode; export {};