import type React from "react"; import { type ModalPropsType } from "."; type StepComponentType = (props: { navigation: { nextStep: () => void; previousStep: () => void; closeModal: () => void; }; data: T; }) => React.ReactNode; export type ModalStepType = { title: StepComponentType; content: StepComponentType; footer?: StepComponentType; }; type MultiStepsModalProps = { stepData?: T; close: () => void; onHidden?: (currentStepIndex: number) => void; steps: ModalStepType[]; useMidSizeHeight?: boolean; } & Omit; declare const MultiStepModal: ({ stepData, close, steps, onHidden, useMidSizeHeight, ...modalProps }: MultiStepsModalProps) => import("react/jsx-runtime").JSX.Element; export default MultiStepModal;