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