export declare const progressDotVariants: (props?: ({ isActive?: boolean | null | undefined; } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string; export type ProgressDotsVariant = 'tonal' | 'theme'; export type ProgressDotsProps = { items: number; activeIndex: number; variant?: ProgressDotsVariant; /** Callback function triggered when the 'next' button/arrow is clicked. */ onNext?: () => void; /** Callback function triggered when the 'previous' button/arrow is clicked. */ onPrev?: () => void; /** Callback function triggered when an indicator dot is clicked. Receives the index of the clicked dot. */ onIndicatorClick?: (index: number) => void; }; //# sourceMappingURL=types.d.ts.map