import React from "react";
export interface PaginationActionsProps {
    className?: string;
    disabled?: boolean;
    hasNextPage: boolean;
    hasPreviousPage: boolean;
    nextIconButtonProps?: any;
    onNextPage: () => void;
    onPreviousPage: () => void;
}
export declare const PaginationActions: React.FC<PaginationActionsProps>;
