import { ruleCreator } from "../_internal/rule-creator.js"; type MessageIds = "unstableChild"; type Options = readonly [RuleOption?]; type RuleOption = Readonly<{ readonly strict?: boolean; }>; /** * Report unstable child values passed to custom components without inserting * hooks or guessing dependency arrays. */ declare const rule: ReturnType>; export default rule; //# sourceMappingURL=no-unstable-react-children.d.ts.map