import { type PropsWithChildren } from 'react'; import { type TextProps } from '../../Text'; import type { ElementProps } from '../Heading'; export type AbstractProps = PropsWithChildren<{ /** * テキストのサイズ * * @default 'XL' */ size?: Extract; /** 視覚的に非表示にするフラグ */ visuallyHidden?: boolean; /** * title要素の自動生成フラグ * * Next.js 環境ではこの値にかかわらずtitleは自動生成されません。metadataなどの方法を利用してください。 */ autoPageTitle?: boolean; /** title要素のprefix */ pageTitle?: string; /** title要素のsuffix */ pageTitleSuffix?: string; }>; type Props = AbstractProps & Omit; export declare const PageHeading: import("react").NamedExoticComponent; export {};