import { RuleMerger } from "../ruleMerger";
/**
 * https://eslint.org/docs/rules/no-empty arguments merger.
 *
 * The only (and optional) option is `{ allowEmptyCatch: boolean }` which defaults to `{ allowEmptyCatch: false }`.
 *
 * Since the `false` case is stricter this sould only set `{ allowEmptyCatch: true }` when both inputs enable it.
 */
export declare const mergeNoEmpty: RuleMerger;
