import { Api } from "../../types"; import { Store } from "@equilab/utils"; import { ExplorerParams } from "./"; export interface StatsParams extends ExplorerParams<{}> { method: "stats"; } export declare const isStats: (body: ExplorerParams) => body is StatsParams; export declare const createStatsFilter: (db: Store, api: Api) => () => Promise<{ locked: any; claimed: string; vested: string; }>;