1import { ConfigPlugin, Mod, ModPlatform } from '../Plugin.types';
2/**
3 * Mods that don't modify any data, all unresolved functionality is performed inside a dangerous mod.
4 * All dangerous mods run first before other mods.
5 *
6 * @param config
7 * @param platform
8 * @param action
9 */
10export declare const withDangerousMod: ConfigPlugin<[ModPlatform, Mod<unknown>]>;
11