import React, { PropsWithChildren, ReactNode } from 'react'; export interface PanelTabsContextProps { activeTabId?: string; onChange?: (id: string) => void; } export declare const PanelTabContext: React.Context; export declare const usePanelTabContext: () => PanelTabsContextProps; export interface TabsProps { title?: string; important?: boolean; items: ReactNode; } export interface PanelTabsProps { /** 탭 또는 탭 그룹 사이 구분선 표시 여부 */ hasDivider?: boolean; className?: string; activeTabId?: string; onChange?: (id: string) => void; } export type PanelTabsComponentProps = PropsWithChildren; export declare const PanelTabs: ({ hasDivider, children, className, activeTabId, onChange }: PanelTabsComponentProps) => import("@emotion/react/jsx-runtime").JSX.Element;