import { type ComponentPropsWithoutRef, type FC, type PropsWithChildren } from 'react'; import { type HeadingTagTypes } from '../Heading'; import type { TextProps } from '../Text'; type AbstractProps = PropsWithChildren<{ /** ヘッダ部分のテキストのスタイル */ headingType?: Exclude; /** * 可能な限り利用せず、SectioningContent(Article, Aside, Nav, Section)を使ってHeadingと関連する範囲を明確に指定する方法を検討してください */ unrecommendedHeadingTag?: HeadingTagTypes; }>; type Props = AbstractProps & Omit, keyof AbstractProps>; export declare const AccordionPanelTrigger: FC; export {};