import { type CSSProperties } from 'react'; import { type CssLength } from '../../../utils/css'; type PageRotatorProps = { count?: number; page?: number; defaultPage?: number; onPageChange?: (page: number) => void; disabledPages?: readonly number[]; ariaLabel?: string; getPageLabel?: (page: number) => string; width?: CssLength; viewBoxWidth?: number; viewBoxHeight?: number; dotRadius?: number; strokeWidth?: number; color?: string; inactiveOpacity?: number; intro?: boolean; className?: string; style?: CSSProperties; }; declare const PageRotator: ({ count, page, defaultPage, onPageChange, disabledPages, ariaLabel, getPageLabel, width, viewBoxWidth, viewBoxHeight, dotRadius, strokeWidth, color, inactiveOpacity, intro, className, style, }: PageRotatorProps) => import("react/jsx-runtime").JSX.Element; export { PageRotator }; export type { PageRotatorProps };