import { UseQueryResult } from '@tanstack/react-query'; import { GooSaleContractData } from './useSaleInfo'; export interface RefundContractData { address: string; chainId: number; type: 'goo' | 'sgoo'; stageKey: string; stageNumber: number; depositAmount: string; depositAmountBTC: number; hasRefunded: boolean; principalToken: GooSaleContractData['principalToken']; } export interface RefundData { contracts: RefundContractData[]; totalDepositBTC: number; } export default function useRefundData(): UseQueryResult;