import type { PluginDeleteAction } from '@magnetarjs/types';
import { MakeRestoreBackup, SimpleStoreOptions } from '../CreatePlugin.js';
export declare function deleteActionFactory(data: {
    [collectionPath: string]: Map<string, {
        [key: string]: unknown;
    }>;
}, simpleStoreOptions: SimpleStoreOptions, makeBackup?: MakeRestoreBackup): PluginDeleteAction;
