import * as react from 'react'; import * as _emotion_react_types_jsx_namespace from '@emotion/react/types/jsx-namespace'; import { LegacyTabListProps } from './TabList.types.js'; import '../../types.js'; import '@emotion/react'; /** * @deprecated 사용되지 않는 컴포넌트입니다. `Tabs` 컴포넌트를 사용하세요. */ declare const LegacyTab: react.ForwardRefExoticComponent<{ children?: react.ReactNode; } & { title?: string | undefined; onClick?: VoidFunction | undefined; active?: boolean | undefined; value?: string | undefined; disabled?: boolean | undefined; preRender?: boolean | undefined; badge?: number | undefined; icon?: react.ReactNode; iconPosition?: "top" | "right" | "bottom" | "left" | undefined; variant?: "underline" | "segment" | "squared" | undefined; } & react.RefAttributes>; /** * @deprecated Use `Tabs` instead. */ declare const LegacyTabList: ({ children, variant, size, direction, background, fullWidth, type, activeValue, onChangeValue, sx, }: LegacyTabListProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element; export { LegacyTab, LegacyTabList, LegacyTabListProps };