import { type ReactNode } from 'react'; export type Props = { /** ダイアログタイトル */ text: ReactNode; /** ダイアログサブタイトル */ sub?: ReactNode; id?: string; }; export declare const DialogHeading: import("react").NamedExoticComponent;