import { LayoutPosition } from '../../layout/layout-position';
import { GoToPageCommandBase } from './go-to-page-command-base';
export declare abstract class GoToNextPageCommandBase extends GoToPageCommandBase {
    goToPage(layoutPosition: LayoutPosition, x: number, y: number): void;
    private getPosition;
}
export declare class GoToNextPageCommand extends GoToNextPageCommandBase {
    extendSelection(): boolean;
}
export declare class ExtendGoToNextPageCommand extends GoToNextPageCommandBase {
    extendSelection(): boolean;
}
