import { type TSESTree } from "@typescript-eslint/utils"; /** * Determine whether a call-expression replacement to a type-predicate helper is * safe to apply as an autofix. * * @remarks * Type-predicate helpers (for example `setHas`) can change control-flow * narrowing in boolean guard expressions. This check intentionally disables * autofix in those contexts and leaves a diagnostic for manual review. */ export declare const isTypePredicateExpressionAutofixSafe: (node: Readonly) => boolean; /** * Backward-compatible alias for call-expression-based callers. */ export declare const isTypePredicateAutofixSafe: (node: Readonly) => boolean; //# sourceMappingURL=type-predicate-autofix-safety.d.ts.map