import { ReactNode } from 'react'; import { ToolbarProps } from '../Toolbar'; interface WizardToolbarProps extends ToolbarProps { cancelButton?: ReactNode; } /** * Toolbar component for the WizardForm. * * This component renders a toolbar with navigation buttons for a multi-step form. * It includes buttons to navigate to the previous and next steps, as well as a cancel button. * * @param {WizardToolbarProps} props - The properties for the Toolbar component. * @param {React.ReactElement} props.cancelButton - An optional cancel button element. * @param {object} props.toolbarProps - Additional properties to pass to the RaToolbar component. * * @returns {JSX.Element} The rendered Toolbar component. */ declare function Toolbar({ cancelButton, ...props }: WizardToolbarProps): import("react/jsx-runtime").JSX.Element; export { Toolbar }; //# sourceMappingURL=Toolbar.d.ts.map