import { SquidDataType } from "@0xsquid/squid-types"; interface Erc20AllowanceParams { tokenAddress: string | undefined; ownerAddress: string | undefined; spenderAddress: string | undefined; amount: bigint | undefined; chainId: number | undefined; transactionType: SquidDataType | undefined; enabled?: boolean; } export declare const useErc20Allowance: ({ tokenAddress, ownerAddress, spenderAddress, amount, chainId, transactionType, enabled, }: Erc20AllowanceParams) => { hasAllowance: boolean; query?: undefined; allowanceInWei?: undefined; } | { query: import("wagmi").UseReadContractReturnType; hasAllowance: boolean; allowanceInWei: bigint; }; export {};