import { FeesParams } from "./index"; import { Store } from "@equilab/utils"; import BigNumber from "bignumber.js"; import { Api } from "../../types"; export interface InterestEarnedParams extends FeesParams<{ address: string; }> { method: "interestearned"; } export declare const isInterestEarned: (body: FeesParams) => body is InterestEarnedParams; export declare const createInterestEarnedFilter: (store: Store, api: Api) => ({ payload: { address } }: InterestEarnedParams) => Promise<{ [x: string]: BigNumber; }>;