/// import type { PDSTabItemOption, PDSTextType } from '../../../common/types'; type TextObj = { path: string; title: PDSTextType; }; type StyleTheme = 'main' | 'content' | 'content2'; type UserDesktopTabBarProps = { itemArray?: PDSTabItemOption[]; styleTheme?: StyleTheme; /** @deprecated v1.5 해당 필드 대신 itemArray를 사용하세요. */ textArray?: TextObj[]; }; declare function UserDesktopTabBar({ itemArray, styleTheme, textArray }: UserDesktopTabBarProps): JSX.Element; export default UserDesktopTabBar;