import React from "react"; import { ViewProps } from "react-native"; export type DotProgressProps = { /** * Height of the indicator. The width is calculated automatically based on this value. */ size?: number; /** * Color theme of the indicator. */ color?: "neutral" | "primary"; } & ViewProps; export declare const DotProgress: { ({ color, size: optionalSize, ...rest }: DotProgressProps): React.JSX.Element; displayName: string; };