import { CommonProps } from "@trackunit/react-components"; import { ReactElement, MouseEventHandler } from "react"; interface FormWizardFooterProps extends CommonProps { primaryActionLabel?: string; onClickCancel: MouseEventHandler; onClickBack: (() => void) | null; disablePrimaryAction?: boolean; loading: boolean; } /** * The footer component for the FormWizard. * In most cases you should not be using this component directly, but rather use the FormWizard component. */ export declare const FormWizardFooter: ({ disablePrimaryAction, loading, onClickBack, onClickCancel, primaryActionLabel, }: FormWizardFooterProps) => ReactElement; export {};