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