import { HTMLAttributes, ReactNode } from 'react'; export interface PanelTabProps extends Omit, 'onClick'> { id: string; /** 탭 선택 이벤트 */ onTabSelect?: (id: string) => void; title: string; number: number; /** 숫자 뒤에 표시할 단위 */ unit: string; /** 도움말 아이콘 렌더링 함수 */ renderHelperIcon?: (icon: ReactNode) => JSX.Element; /** 강조 상태 */ status?: 'warning' | null; caption?: string; disabled?: boolean; /** @default 'ko-KR' */ locale?: 'ko-KR' | 'en-US'; } export declare const PanelTab: ({ id, onTabSelect, className, caption, status, renderHelperIcon, unit, title, number, disabled, locale, ...props }: PanelTabProps) => import("@emotion/react/jsx-runtime").JSX.Element;