/// export type StepProps = { stepContent?: JSX.Element; containerWidth: number; }; declare const Step: ({ stepContent, containerWidth }: StepProps) => JSX.Element; export default Step;