import { Store } from "@equilab/utils"; import { ExplorerParams } from "./"; export interface PricesParams extends ExplorerParams<{ blocks: string; }> { method: "prices"; } export declare const isPrices: (body: ExplorerParams) => body is PricesParams; export declare const createPricesFilter: (store: Store) => ({ payload: { blocks } }: PricesParams) => Promise<{ [blockNumber: string]: { [currency: string]: { price: string; volatility: string; }; }; }>;