export default remarkLintNoUndefinedReferences;
/**
 * Configuration.
 */
export type Options = {
    /**
     * List of values to allow between `[` and `]` (optional)
     */
    allow?: ReadonlyArray<RegExp | string> | null | undefined;
    /**
     * Allow shortcut references, which are just brackets such as `[text]`
     * (`boolean`, default: `false`)
     */
    allowShortcutLink?: boolean | null | undefined;
};
declare const remarkLintNoUndefinedReferences: import("unified-lint-rule").Plugin<Root, Readonly<Options> | null | undefined>;
import type { Root } from 'mdast';
//# sourceMappingURL=index.d.ts.map