import { Ether } from "src/utils"; import { Address } from "viem"; import { JBCurrency } from "../../../constants"; export interface EthDistributionLimitArgs { /** * Project id to get the distributionLimit of. */ projectId: bigint; /** * The configuration during which the distribution limit applies. */ configuration: bigint; /** * The terminal from which distributions are being limited. */ terminalAddress: Address; } /** * Hook to retrieve the ETH distribution limit for a project. * * @returns The distribution limit (and distribution limit currency) for the given project. */ export declare function useEthDistributionLimit({ projectId, configuration, terminalAddress, }: EthDistributionLimitArgs): Pick, "error" | "data" | "fetchStatus" | "isError" | "isFetched" | "isFetchedAfterMount" | "isFetching" | "isLoading" | "isRefetching" | "isSuccess" | "refetch"> & { isIdle: boolean; status: "error" | "success" | "loading" | "idle"; internal: Pick; }; //# sourceMappingURL=useEthDistributionLimit.d.ts.map