import { ChartsParams } from "./"; import { Transfer, Store } from "@equilab/utils"; export interface SupplyParams extends ChartsParams<{ from?: number; to?: number; }> { method: "supply"; } export declare const isSupply: (body: ChartsParams) => body is SupplyParams; export declare const createSupplyFilter: (store: Store) => () => Promise[]>;