import { SxProps, Theme } from '@mui/material'; import { MouseEvent } from 'react'; export interface DialogCloseProps { onClick?: (e: MouseEvent) => void; position?: "absolute" | "relative"; sx?: SxProps; } /** * Dialog close button: permanent grey outline, icon and hairline reinforced on hover. */ declare const DialogCloseIcon: ({ onClick, position, sx }: DialogCloseProps) => import("@emotion/react/jsx-runtime").JSX.Element; export default DialogCloseIcon;