import { type StateProp } from '@innet/dom'; import { type FlexProps } from '../../layout'; export interface DotsProps extends Omit, 'onchange'> { count: number; size?: StateProp; autoscroll?: StateProp; progress?: boolean; value?: StateProp; onchange?: (value: number) => void; onend?: () => void; circular?: boolean; } export declare function Dots({ ref, count, autoscroll, style, size, progress, value, onchange, onend, circular, ...props }: DotsProps): any;