/** * Return the current cashout value of one project token. */ export declare function useSuckersTokenCashOutValue({ targetCurrency }: { targetCurrency: "eth" | "usd"; }): { loading: boolean; data: undefined; errors?: undefined; } | { loading: false; data: number; errors: (Error | null)[]; }; //# sourceMappingURL=useSuckersTokenCashOutValue.d.ts.map