import type { CodemodInput, CodemodResult } from "./index.js"; /** * Codemod for naming/component-pascalcase. * * Renames the exported component to PascalCase in the same file. * Cross-file renames are NOT attempted (returns confidence: 0 with rationale). * * Limitations documented: * - Only renames declarations where the name appears on the flagged line. * - Does NOT update other files that import this component. * Use a project-level rename refactor (IDE or codemod tool) for that. */ export declare function fixNamingComponentPascalCase(input: CodemodInput): CodemodResult;