import React from 'react'; import { StepperProps } from '../../../stepper'; export declare type StepperSectionProps = StepperProps & Readonly<{ itemTitle: string; confirmLabel: string; onClose: () => void; onConfirm?: (event: React.MouseEvent) => void; }>; export declare const StepperSection: ({ itemTitle, className, onClose, confirmLabel, onChange, ...props }: StepperSectionProps) => JSX.Element;