import type { MemberExpression } from 'estree';
import { RuleError } from '../../errors';
import type { Rule } from '../../types';
export declare class NoDotAbbreviationError extends RuleError<MemberExpression> {
    explain(): string;
    elaborate(): string;
}
declare const noDotAbbreviation: Rule<MemberExpression>;
export default noDotAbbreviation;
