import * as React from "react"; import { HTMLNextUIProps } from "../utils/system"; import { BadgeVariantsProps } from "./badge.styles"; interface Props extends Omit, keyof BadgeVariantsProps> { children?: React.ReactNode; content?: string | number | React.ReactNode; isInvisible?: boolean; verticalOffset?: string | number; horizontalOffset?: string | number; } export declare type BadgeProps = Props & Omit; declare const Badge: import("../utils/system").ComponentWithAs<"span", BadgeProps>; export default Badge;