import { AggregatesParams } from "./"; import { Store } from "@equilab/utils"; import { Api } from "../../types"; export interface LockedParams extends AggregatesParams<{ currency: string; excludeAddresses?: string; }> { method: "locked"; } export declare const isLocked: (body: AggregatesParams) => body is LockedParams; export declare const createLockedFilter: (store: Store, api: Api) => ({ payload: { currency, excludeAddresses } }: LockedParams) => Promise<[string, { bailsmanTotal: string; borrowerTotal: string; }][]>;