import type { ComponentType, ReactNode } from "react"; export type GBadgeProps = { children?: ReactNode; [key: string]: unknown; }; export declare const GBadge: ComponentType;