import { DialogActionsProps as MuiDialogActionsProps } from '@mui/material/DialogActions'; export { default as Dialog } from '@mui/material/Dialog'; export type { DialogProps } from '@mui/material/Dialog'; export { default as DialogTitle } from '@mui/material/DialogTitle'; export { default as DialogContent } from '@mui/material/DialogContent'; export { default as DialogContentText } from '@mui/material/DialogContentText'; /** Where the action buttons sit within the dialog's footer row. */ export type DialogActionsAlign = 'start' | 'center' | 'end' | 'stretch'; export interface DialogActionsProps extends MuiDialogActionsProps { /** * Button placement. Defaults to `end` (right-aligned); `stretch` shares the * full row width between the actions. */ align?: DialogActionsAlign; /** Tighter gutters for compact confirmation dialogs. */ dense?: boolean; } export declare function DialogActions({ align, dense, sx, ...rest }: DialogActionsProps): import("react").JSX.Element;