import React from 'react'; export type VisualPageIndicatorProps = { /** * CSS class names that can be appended to the component. */ className?: string; /** * Index of the active page in the indicator (0-based). */ activePage: number; /** * Total number of pages available in this experience */ totalPageCount: number; }; /** * `import {VisualPageIndicator} from "@chanzuckerberg/eds";` * * Static visual cue to help users understand their current position within a series of content or pages. */ export declare const VisualPageIndicator: ({ className, activePage, totalPageCount, ...other }: VisualPageIndicatorProps) => React.JSX.Element;