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