import { StepperItem } from '../Stepper'; export interface ProgressDialogProps { open: boolean; onClose?: () => void; title: string; steps: StepperItem[]; currentStep: number; actionLabel?: string; onAction?: () => void; actionDisabled?: boolean; className?: string; } export declare function ProgressDialog({ open, onClose, title, steps, currentStep, actionLabel, onAction, actionDisabled, className, }: ProgressDialogProps): import("react/jsx-runtime").JSX.Element;