import { StackProps } from '@mui/material'; import { ReactElement } from 'react'; import { Action } from '@perses-dev/components'; export interface FormActionsProps extends StackProps { action: Action; submitText?: string; cancelText?: string; isReadonly?: boolean; isValid?: boolean; onActionChange?: (action: Action) => void; onSubmit?: () => void; onDelete?: () => void; onCancel?: () => void; } export declare function FormActions({ action, submitText, cancelText, isReadonly, isValid, onActionChange, onSubmit, onDelete, onCancel, ...props }: FormActionsProps): ReactElement; //# sourceMappingURL=FormActions.d.ts.map