import { type ModalProps } from '@mui/material'; import type React from 'react'; import type { CSSProperties } from 'react'; export type DialogHeaderProps = { /** * Горизонтальное выравнивание * */ justifyContent?: CSSProperties['justifyContent']; /** * Убирает расстояние между компонентами * */ disableSpacing?: boolean; title?: string; onClose?: ModalProps['onClose']; children: React.ReactNode; }; export declare const DialogHeader: ({ children, title, justifyContent, disableSpacing, onClose, }: DialogHeaderProps) => JSX.Element;