declare interface NotificationBadgeVariant { /** * - `small`: 간결한 도트 형태로, 텍스트 없이 상태 변화만 표시합니다. 알림의 존재 여부만 중요하거나 공간이 제한된 경우에 적합합니다. 내부 라벨은 지원하지 않습니다. * - `large`: 라벨을 포함해 구체적인 알림 수나 상태 정보를 제공합니다. 세부 정보가 중요하고 충분한 공간이 있을 때 사용합니다. 내부 라벨을 반드시 포함해야 합니다. * * @default "large" */ size: "small" | "large"; } declare type NotificationBadgeVariantMap = { [key in keyof NotificationBadgeVariant]: Array; }; export declare type NotificationBadgeVariantProps = Partial; export declare const notificationBadgeVariantMap: NotificationBadgeVariantMap; export declare const notificationBadge: (( props?: NotificationBadgeVariantProps, ) => string) & { splitVariantProps: ( props: T, ) => [NotificationBadgeVariantProps, Omit]; }