import { ReactNode } from "react"; //#region src/Badge/Badge.types.d.ts declare const badgeVariants: readonly ['new', 'preview']; type BadgeVariant = (typeof badgeVariants)[number]; type BadgeProps = { /** * The content rendered inside the badge. */ children: ReactNode; /** * Visual style variant for the badge. * @default 'new' */ variant?: BadgeVariant; /** * Test ID attribute used to locate the badge in automated tests. */ testId?: string; /** * Additional CSS classes applied to the badge element. */ extraClassNames?: string; }; //#endregion export { BadgeProps, BadgeVariant, badgeVariants };