import { Theme } from '@emotion/react'; import { SxProps } from '@mui/material'; export interface ConfirmationDialogProps { openConfirmDialog: boolean; handleCancel: () => void; onClickSubmit: () => void; text?: string; Submit?: string; Cancel?: string; title?: string; sx?: SxProps; }