import { type ButtonProps } from "src/components/Button"; export interface FormikActionBlockProps { /** Additional CSS class names for the wrapper. */ className?: string; /** Props forwarded to the submit button. */ submitButtonProps?: ButtonProps; /** Props forwarded to the cancel button. */ cancelButtonProps?: ButtonProps; /** * Override the auto-computed submitting state (e.g. from React Query mutation). * Falls back to Formik's `isSubmitting` when not provided. */ isSubmitting?: boolean; /** Alignment of the buttons. */ position?: "left" | "right"; } declare const FormikActionBlock: import("react").ForwardRefExoticComponent>; export { FormikActionBlock };