import { type CSSProperties } from 'react'; import { type CssLength } from '../../../utils/css'; type GooeyPaginationProps = { count?: number; page?: number; defaultPage?: number; onPageChange?: (page: number) => void; disabledPages?: readonly number[]; ariaLabel?: string; getPageLabel?: (page: number) => string; dotSize?: CssLength; activeSize?: CssLength; gap?: CssLength; color?: string; mutedColor?: string; className?: string; style?: CSSProperties; }; declare const GooeyPagination: ({ count, page, defaultPage, onPageChange, disabledPages, ariaLabel, getPageLabel, dotSize, activeSize, gap, color, mutedColor, className, style, }: GooeyPaginationProps) => import("react/jsx-runtime").JSX.Element; export { GooeyPagination }; export type { GooeyPaginationProps };