import React from 'react'; import { FlintDialogActions as FlintDialogActionsElement } from '@getufy/flint-ui/dialog/flint-dialog'; /** * flint-dialog-actions: footer button row for a dialog. Use the `align` prop to control button alignment. */ export interface FlintDialogActionsProps extends React.HTMLAttributes { /** * Alignment of action buttons: 'end' (default), 'start', 'center', 'space-between'. * Allowed values: 'start' | 'center' | 'end' | 'space-between' */ align?: 'start' | 'center' | 'end' | 'space-between'; } export declare const FlintDialogActions: React.ForwardRefExoticComponent>;