import { type FC, type ReactNode } from 'react'; import { type DecoratorsType } from '../../../hooks/useDecorators'; import { type Props as DialogBodyProps } from '../DialogBody'; import { type Props as DialogHeadingProps } from '../DialogHeading'; export type AbstractProps = DialogBodyProps & { /** ダイアログタイトル */ heading: DialogHeadingProps; /** ダイアログの説明 */ children: ReactNode; /** コンポーネント内の文言を変更するための関数を設定 */ decorators?: DecoratorsType<'closeButtonLabel'>; }; export type MessageDialogContentInnerProps = AbstractProps & { onClickClose: () => void; }; export declare const MessageDialogContentInner: FC;