import { ICommandOptions } from '../command-base';
import { SimpleCommandState } from '../command-states';
import { SpellingCommandBase } from './spelling-command-base';
export declare class IgnoreSpellingErrorCommand extends SpellingCommandBase {
    executeCore(state: SimpleCommandState, _options: ICommandOptions): boolean;
}
