import { type ComponentPropsWithoutRef, type FC, type PropsWithChildren } from 'react'; type AbstractProps = PropsWithChildren<{ /** アイテムを識別するための名前 */ name: string; }>; type Props = AbstractProps & Omit, keyof AbstractProps>; export declare const AccordionPanelItemContext: import("react").Context<{ name: string; }>; export declare const AccordionPanelItem: FC; export {};