/** * BoxTab 컴포넌트 * @module BoxTab * @description 탭 기반 네비게이션을 구현하는 컴포넌트입니다. * @property {Component} Root - 탭 컨테이너 * @property {Component} Tabs - 탭 목록 * @property {Component} Tab - 탭 * @property {Component} Panel - 탭 패널 * @example * ```tsx * import BoxTab from './BoxTab'; * * function Example() { * return ( * * * 첫 번째 탭 * 두 번째 탭 * * 첫 번째 패널 내용 * 두 번째 패널 내용 * * ); * } * ``` */ declare const BoxTab: { Root: ({ children, currentActiveTab, onChange, }: import("./BoxTab.types").BoxTabRootProps) => import("react/jsx-runtime").JSX.Element; Tabs: ({ children, className }: import("react").ComponentProps<"div">) => import("react/jsx-runtime").JSX.Element; Tab: ({ children, index, className, isFirst, isLast, disabled, href, }: import("./BoxTab.types").BoxTabProps) => import("react/jsx-runtime").JSX.Element; Panel: ({ children, index }: import("./BoxTab.types").BoxTabPanelProps) => false | import("react/jsx-runtime").JSX.Element; }; export { BoxTab };