import React from 'react'; import { ButtonProps } from '../Button'; export interface PaginationButtonProps extends Omit { /** The value of the current option */ eventKey: T; /** A button can show it is currently unable to be interacted with */ disabled?: boolean; /** A button can show it is currently the active user selection */ active?: boolean; /** Primary content */ children?: React.ReactNode; /** Called when the button is clicked */ onClick?: React.MouseEventHandler; /** Select the callback function for the current option */ onSelect?: (eventKey: T, event: React.MouseEvent) => void; } /** * PaginationButton component for pagination navigation. * Renders a button that can be used in pagination contexts. */ declare const PaginationButton: import("../internals/types").InternalRefForwardingComponent & Record, PaginationButtonProps, never> & Record; export default PaginationButton;