import React from 'react'; import { type AppBarProps } from '../AppBar'; import { type ToolbarProps } from '../Toolbar'; import { type SvgIconProps } from '../SvgIcon'; import './DialogHeader.types'; export interface DialogHeaderProps extends AppBarProps { children?: React.ReactNode; className?: string; logo?: React.ReactNode | false; onClose?: (event: React.SyntheticEvent) => void; slotProps?: { logo?: SvgIconProps; toolbar?: ToolbarProps; }; } declare const slots: { root: { slot: "root"; name: "MuiDialogHeader"; }; toolbar: { slot: "toolbar"; name: "MuiDialogHeader"; }; logo: { slot: "logo"; name: "MuiDialogHeader"; }; }; export type DialogHeaderSlots = keyof typeof slots; declare const DialogHeader: React.FC; export default DialogHeader;