import React from 'react'; import type { ViewProps } from 'react-native'; export interface ProgressStepProps extends ViewProps { /** * The total number of steps. */ steps: number; /** * The current step. */ current: number; /** * Test ID of the component. */ testID?: string; } type StepState = 'complete' | 'incomplete' | 'current'; export declare const getStepState: (current: number, index: number) => StepState; declare const ProgressStep: ({ steps, current, onLayout, ...props }: ProgressStepProps) => React.JSX.Element; export default ProgressStep;