import { Ether } from "src/utils"; import { Address } from "viem"; /** * Returns the balance of a given project's given ETH payment terminal. * * @returns {Ether} The balance of the ETH payment terminal. */ export declare function useEthTerminalBalance({ projectId, terminalAddress, }: { projectId: bigint; terminalAddress: Address | undefined; }): Pick, "error" | "data" | "fetchStatus" | "isError" | "isFetched" | "isFetchedAfterMount" | "isFetching" | "isLoading" | "isRefetching" | "isSuccess" | "refetch"> & { isIdle: boolean; status: "error" | "success" | "loading" | "idle"; internal: Pick; }; //# sourceMappingURL=useEthTerminalBalance.d.ts.map