import { HTMLAttributes, ReactNode } from 'react'; export interface PanelTabProps extends Omit, 'onClick'> { id: string; onClick?: (id: string) => void; title: string; number: number; suffix: string; helperIcon?: (icon: ReactNode) => JSX.Element; highlight?: boolean; caption?: string; disabled?: boolean; /** @default 'ko-KR' */ locale?: 'ko-KR' | 'en-US'; } export declare const PanelTab: ({ id, onClick, className, caption, highlight, helperIcon, suffix, title, number, disabled, locale, ...props }: PanelTabProps) => import("@emotion/react/jsx-runtime").JSX.Element;