import React from 'react'; import type { DialogProps } from '@mui/material'; export interface PreviewDialogProps extends Omit { src?: string; filename?: string; onClose?: () => void | Promise; } export declare const PreviewDialog: (props: PreviewDialogProps) => React.JSX.Element;