import { FormActionBarProps } from './form-action-bar.types'; /** * # FormActionBar * * A pattern providing save / cancel / optional delete buttons for form footers. * * Works inside any footer slot: `DefaultPage.Footer`, `ModalPage.Footer`, * `Drawer.Footer`, `Dialog.Footer`. Replaces separate form-page wrappers. * * @example * ```tsx * * ``` */ export declare const FormActionBar: { ({ onSave, onCancel, onDelete, saveLabel, cancelLabel, deleteLabel, isSaveDisabled, isSaveLoading, isDeleteLoading, "aria-label": ariaLabel, cancelSlot, buttonSize, }: FormActionBarProps): import("react/jsx-runtime").JSX.Element; displayName: string; };