import { type ComponentPropsWithoutRef, type ReactNode } from 'react'; export type GlareBadgeProps = Omit, 'children'> & { children?: ReactNode; }; export declare const GlareBadge: ({ children, className, ...props }: GlareBadgeProps) => import("react/jsx-runtime").JSX.Element;