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