import { ruleCreator } from "../_internal/rule-creator.js"; type MessageIds = "invalidAncestor" | "invalidParent" | "voidParent"; type Options = readonly [RuleOption?]; type RuleOption = Readonly<{ readonly checkVoidParents?: boolean; }>; /** Validate deterministic HTML parent and ancestor relationships in JSX. */ declare const rule: ReturnType>; export default rule; //# sourceMappingURL=no-invalid-jsx-nesting.d.ts.map