import { ButtonData, ButtonWrapper } from "djs-button-pages";
/**
 * Bind for button that switches pagination to the next page.
 */
export default class NextPageButton extends ButtonWrapper {
    /**
     * Bind for button that switches pagination to the next page.
     * @param {ButtonData} style Styling for button.
     */
    constructor(style?: ButtonData);
    /**
     * Action that switches pagination to the next page.
     * @param {PaginationSent} pagination Pagination.
     * @returns {Promise<void>}
     */
    private static _doAction;
    /**
     * Switch that disables button on the last page.
     * @param {PaginationSent} pagination Pagination.
     * @returns {boolean}
     */
    private static _switch;
}
