import React from 'react'; import { View } from 'react-native'; import { StepperProps, StepperStepProps, StepperCompletedProps } from './types'; declare const StepperStep: React.ForwardRefExoticComponent & React.RefAttributes>; declare const StepperCompleted: React.FC; declare const Stepper: React.ForwardRefExoticComponent & React.RefAttributes>; declare const StepperWithSubComponents: typeof Stepper & { Step: typeof StepperStep; Completed: typeof StepperCompleted; }; export { StepperWithSubComponents as Stepper }; export type { StepperProps, StepperStepProps, StepperCompletedProps };