import type { FunctionComponent } from 'react'; import type { ImageStyle, ImageURISource, StyleProp, TextStyle, ViewStyle } from 'react-native'; export interface SerializableStepProps { completed: boolean; completedIconStyle?: ImageStyle; title: string; titleStyle?: TextStyle; stepNumber: number; style?: ViewStyle; } export interface StepProps extends Omit { completedIcon?: ImageURISource; completedIconStyle?: StyleProp; onPress?: () => void; titleStyle?: StyleProp; style?: StyleProp; } /** * Individual step of the step indicator * is a touchable element if step is completed */ export declare const Step: FunctionComponent;