import { ComponentPropsWithoutRef } from 'react'; export interface PaginationNumberProps extends ComponentPropsWithoutRef<'button'> { value: number; enabled?: boolean; } export declare const PaginationNumber: ({ value, enabled, ...rest }: PaginationNumberProps) => import("react/jsx-runtime").JSX.Element; export declare const LeftArrow: (props: ComponentPropsWithoutRef<"button">) => import("react/jsx-runtime").JSX.Element; export declare const RightArrow: (props: ComponentPropsWithoutRef<"button">) => import("react/jsx-runtime").JSX.Element;