/** * @typedef {Object} SkillLabel * @property {React.ComponentType} Root - 스킬 라벨의 루트 컨테이너 컴포넌트 * @property {React.ComponentType} Icon - 스킬 라벨에 표시되는 아이콘 컴포넌트 * @property {React.ComponentType} Text - 스킬 라벨의 텍스트 컴포넌트 */ declare const SkillLabel: { Root: ({ children, className }: import("react").ComponentProps<"div">) => import("react/jsx-runtime").JSX.Element; Icon: ({ className, iconUrl }: import("./SkillLabel.parts").IconProps) => import("react/jsx-runtime").JSX.Element; Text: ({ children, className }: import("react").ComponentProps<"span">) => import("react/jsx-runtime").JSX.Element; }; export { SkillLabel };