import { ruleCreator } from "../_internal/rule-creator.js"; type MessageIds = "unstableHookArgument" | "unstableHookReturn" | "unstableProp"; type Options = readonly [RuleOption?]; type RuleOption = Readonly<{ readonly checkHookCalls?: boolean; readonly checkHookReturnObject?: boolean; readonly ignoredHookCallsNames?: Readonly>; readonly ignoredPropNames?: readonly string[]; readonly strict?: boolean; }>; /** * Report unstable values at React prop and custom-hook boundaries without * generating dependency arrays or changing runtime behavior. */ declare const rule: ReturnType>; export default rule; //# sourceMappingURL=no-unstable-react-values.d.ts.map