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