import React from 'react'; import { Id, TField } from '../../@types'; export type FormActionsProps = { formDisabled?: boolean; model: string; objId?: Id; onCancel?: React.MouseEventHandler; onDelete?: (removedId: Id) => void; exit: (id?: Id) => void; bottom?: boolean; saveAndContinue?: boolean; title?: string; labelSave?: string; labelSaveAndContinue?: string; labelSaveAndCreateNew?: string; labelCancel?: string; labelRemove?: string; }; export default function FormActions({ formDisabled, model, objId, onCancel, onDelete, exit, bottom, saveAndContinue, title, labelSave, labelSaveAndContinue, labelSaveAndCreateNew, labelCancel, labelRemove, }: FormActionsProps): React.JSX.Element; //# sourceMappingURL=FormActions.d.ts.map