import React from 'react'; import { CustomComponentWithChildrenProps } from '../styles'; import './DialogHeaderGroup.types'; export interface DialogHeaderGroupProps extends CustomComponentWithChildrenProps { /** Equivalent to margin-left: auto (and disables the default left-margin of the group) */ gutterLeftAuto?: boolean; /** Equivalent to margin-right: auto */ gutterRightAuto?: boolean; /** Disable the gap between the component children. */ disableSpacing?: boolean; /** Disable the default left-margin value between the current DialogHeaderGroup and the previous one. */ disableGutters?: boolean; } declare const slots: { root: { slot: "root"; name: "MuiDialogHeaderGroup"; }; }; export type DialogHeaderGroupSlots = keyof typeof slots; declare const DialogHeaderGroup: React.FC; export default DialogHeaderGroup;