import React, { ReactNode } from "react";
export interface IWizard {
    title: string;
    open: boolean;
    onClose: () => void;
    children: ReactNode;
    disableCloseOnEsc?: boolean;
    dialogClassName?: string;
}
export declare const Wizard: React.ForwardRefExoticComponent<IWizard & React.RefAttributes<HTMLDivElement>>;
//# sourceMappingURL=Wizard.d.ts.map