import { CommandSimpleOptions } from '../command-base';
import { ICommandState } from '../i-command';
import { SelectionCommandBase } from './selection-command-base';
export declare class SelectParagraphCommand extends SelectionCommandBase {
    executeCore(_state: ICommandState, options: CommandSimpleOptions<number>): boolean;
}
