import { CommonProps } from "@trackunit/react-components"; import { ReactNode } from "react"; interface FormWizardHeaderProps extends CommonProps { title: string; description?: string | ReactNode; } /** * The header component for the FormWizard. * In most cases you should not be using this component directly, but rather use the FormWizard component. */ export declare const FormWizardHeader: ({ title, description, className, "data-testid": dataTestId, }: FormWizardHeaderProps) => import("react/jsx-runtime").JSX.Element; export {};