import { ToReact } from './helpers.types'; import { ZStepper } from '../stepper'; export type ZrStepper_Props = ToReact<'Stepper'>; type ZrStepper_Type = React.ForwardRefExoticComponent & { ref?: React.ForwardedRef; } & { Label: typeof Label; }; declare const Label: import('react').FC; /** ### `` * (_for ⚛ React_) * */ declare const Namespace: ZrStepper_Type; export { Namespace as ZrStepper };