import { type ComponentProps, type FC, type PropsWithChildren } from 'react'; type DisclosureContentAbstractProps = PropsWithChildren<{ /** DisclosureTriggerのtargetIdと紐づけるId */ id: string; /** 開閉状態。デフォルトは閉じている */ isOpen?: boolean; /** 閉じた状態でContentを要素として存在させるか。デフォルトでは要素は存在しない */ visuallyHidden?: boolean; }>; type DisclosureContentProps = DisclosureContentAbstractProps & Omit, keyof DisclosureContentAbstractProps>; export declare const DisclosureContent: FC; export {};