import type { Rule } from 'eslint'; export interface RenamePropOptions { from: string; to: string; includeTypes?: boolean; } export declare const renameProp: Rule.RuleModule;