import React from "react"; export interface DataTablePaginationButtonProps { /** * The direction of the pagination button */ readonly direction: "previous" | "next"; /** * Callback function when the pagination button is clicked */ readonly onClick?: () => void; /** * Whether the pagination button is disabled */ readonly disabled?: boolean; /** * Function that returns the aria-label for the button. Required for accessibility. * Should return translated strings based on the direction parameter. */ readonly ariaLabel: (direction: "previous" | "next") => string; } export declare function DataTablePaginationButton({ direction, onClick, disabled, ariaLabel, }: DataTablePaginationButtonProps): React.JSX.Element;