import { Api } from "../../types"; import { Store } from "@equilab/utils"; import { HTTPRequestBody } from "../../types/common"; export interface AggregatesParams extends HTTPRequestBody { namespace: "aggregates"; } export declare const isAggregates: (body: HTTPRequestBody) => body is AggregatesParams; export declare const createAggregatesFilter: (api: Api, db: Store) => (body: AggregatesParams) => Promise>>;