import type { PathWhereIdentifier, PluginFetchAggregateAction } from '@magnetarjs/types';
import { Vue3StoreOptions } from '../CreatePlugin.js';
export declare function fetchAggregateActionFactory(pathAggregateDic: {
    [collectionPath in PathWhereIdentifier]?: {
        [key in string]: number | {
            [key in string]: unknown;
        };
    };
}, vue3StoreOptions: Vue3StoreOptions): PluginFetchAggregateAction;
