import { type ReactElement, type PropsWithChildren } from 'react'; /** Define the props interface for StepContent component */ type StepContentProps = { readonly activeStepKey: string | null; }; declare const StepContent: { ({ children, activeStepKey, }: PropsWithChildren): ReactElement | undefined; displayName: string; }; export default StepContent; //# sourceMappingURL=StepContent.d.ts.map