/// import type { PDSTabItemOption, PDSTextType } from '../../../common/types'; type MobileTabBarColorThemeType = 'none' | 'grey_01'; type TextObj = { path: string; title: PDSTextType; }; type MobileTabBarProps = { itemArray?: PDSTabItemOption[]; /** @description styleTheme이 'main'일 때만 colorTheme이 존재합니다. */ colorTheme?: MobileTabBarColorThemeType; styleTheme?: 'main' | 'content'; /** @deprecated v1.5 해당 필드 대신 itemArray를 사용하세요. */ textArray?: TextObj[]; }; declare function MobileTabBar({ itemArray, colorTheme, styleTheme, textArray }: MobileTabBarProps): JSX.Element; export default MobileTabBar;