import { type ReactElement, type ReactNode } from 'react'; /** Define the props interface for children components of StepPane */ declare const StepPane: { ({ children }: { readonly children: ReactNode; }): ReactElement; displayName: string; }; export default StepPane; //# sourceMappingURL=StepPane.d.ts.map