/// import type { PDSIconType, PDSTabItemOption, PDSTextType } from '../../../common/types'; type ItemArray = PDSTabItemOption & { subArray?: PDSTabItemOption[]; iconMode?: 'none' | 'use'; iconName?: PDSIconType; iconFillType?: 'line' | 'fill'; }; type TextObj = { title: PDSTextType; path: string; subArray?: { title: PDSTextType; path: string; }[]; }; type DesktopTabBarProps = { itemArray?: ItemArray[]; styleTheme?: 'main' | 'content' | 'content_black'; /** @deprecated v1.5 해당 필드 대신 itemArray를 사용하세요. */ textArray?: TextObj[]; }; declare function DesktopTabBar({ itemArray, styleTheme, textArray }: DesktopTabBarProps): JSX.Element; export default DesktopTabBar;