import type { CodemodInput, CodemodResult } from "./index.js"; /** * Codemod for naming/hook-prefix. * * Renames the exported hook function to use in the same file. * Cross-file renames are NOT attempted — returns reduced confidence with a warning. * * Limitations documented: * - Only renames the declaration on the flagged line. * - Does NOT update other files that import this hook. * Use a project-level rename refactor (IDE or codemod tool) for that. */ export declare function fixNamingHookPrefix(input: CodemodInput): CodemodResult;