import type React from "react";
import type { BadgeVariant } from "../Badge";
export type PageTitleBadge = {
    variant: BadgeVariant;
    icon?: React.ReactNode;
    label?: string;
    tooltipContent?: string;
};
