import { ICommandOptions } from '../command-base';
import { SimpleCommandState } from '../command-states';
import { SelectionCommandBase } from './selection-command-base';
export declare abstract class GoToPrevWordCommandBase extends SelectionCommandBase {
    getState(): SimpleCommandState;
    getStartPosition(): number;
    isEnabledInReadOnlyMode(): boolean;
    executeCore(_state: SimpleCommandState, _options: ICommandOptions): boolean;
    protected abstract setSelection(position: number): any;
}
export declare class GoToPrevWordCommand extends GoToPrevWordCommandBase {
    protected setSelection(position: number): void;
}
export declare class ExtendGoToPrevWordCommand extends GoToPrevWordCommandBase {
    protected setSelection(position: number): void;
}
