import { useEstimateGas, useSimulateContract, useWriteContract } from 'wagmi'; interface UseStableCoinTransferProps { contractAddress: `0x${string}`; to: string; amount: string; balance: string; enabled?: boolean; } export declare function useStableCoinTransfer({ contractAddress, to, amount, balance, enabled, }: UseStableCoinTransferProps): { transfer: () => void; data: ReturnType['data']; isPending: boolean; isGasFeeEnough: boolean; error: ReturnType['error'] | ReturnType['error'] | ReturnType['error']; }; export {};