import { ReactNode } from 'react'; export type BadgeVariant = 'sale' | 'discount' | 'info'; export interface BadgeProps { variant?: BadgeVariant; children: ReactNode; className?: string; } export declare function Badge({ variant, children, className }: BadgeProps): import("react/jsx-runtime").JSX.Element; export default Badge; //# sourceMappingURL=Badge.d.ts.map