import { type ComponentProps, type ReactEventHandler, type ReactNode } from "react"; import type { ThemingProps } from "../../types"; export interface PaginationButtonTheme { base: string; active: string; disabled: string; } export interface PaginationButtonProps extends ComponentProps<"button">, ThemingProps { active?: boolean; children?: ReactNode; className?: string; onClick?: ReactEventHandler; } export interface PaginationPrevButtonProps extends Omit { disabled?: boolean; } export declare const PaginationButton: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export declare function PaginationNavigation({ children, className, onClick, disabled, theme: customTheme, clearTheme, applyTheme, ...props }: PaginationPrevButtonProps): import("react/jsx-runtime").JSX.Element; export declare namespace PaginationNavigation { var displayName: string; }