import { type SxProps, type Theme } from "@mui/material"; type SubmitButtonsProps = { /** * Whether the form is in edit mode. If true, delete button is visible and submit button's text changes. */ edit?: boolean; /** * Set loading state for submit button */ loading?: boolean; /** * Custom styles for Box wrapper around buttons */ sx?: SxProps; onDelete?: () => void; onCancel?: () => void; onSubmit?: () => void; }; export declare function SubmitButtons({ edit, loading, onDelete, onCancel, onSubmit, sx }: SubmitButtonsProps): import("react").JSX.Element; export {};