import { PropsWithChildren } from 'react'; /** * 아코디언 컨테이너 컴포넌트 * * @description * 여러 개의 접을 수 있는 콘텐츠 섹션을 관리하는 컨테이너입니다. * Compound Component 패턴을 사용하여 Accordion.Item과 함께 사용합니다. * * @param {React.ReactNode} children - Accordion.Item 컴포넌트들 * * @example * ```tsx * * *

첫 번째 섹션의 내용

*
* *

두 번째 섹션의 내용

*
*
* ``` */ declare const Accordion: { ({ children }: PropsWithChildren): import("react/jsx-runtime").JSX.Element; Item: ({ title, href, linkText, linkTarget, children, }: ItemProps) => import("react/jsx-runtime").JSX.Element; }; interface ItemProps extends PropsWithChildren { title: string; href?: string; linkText?: string; linkTarget?: '_blank' | '_self'; } export { Accordion };