import React from 'react'; /** * Wrap `` and other action buttons into `` component * to position them accordingly and move them away from the fields above. */ declare const FormActions: ({ align, children }: FormActionsProps) => import("react/jsx-runtime").JSX.Element; type align = 'left' | 'right' | 'center' | 'space-between'; export interface FormActionsProps { align?: align; children: React.ReactNode; } export default FormActions;