import { CommonProps } from "@trackunit/react-components"; import { ReactNode } from "react"; interface FormWizardSidebarProps extends CommonProps { /** * Steps of the wizard. */ children: ReactNode; } /** * Displays the sidebar with steps for the wizard. * Prefer using the FormWizard component instead of this directly. */ export declare function FormWizardSidebar({ "data-testid": dataTestId, children, className }: FormWizardSidebarProps): import("react/jsx-runtime").JSX.Element; export {};