import { Badge } from "@voyant-travel/ui/components/badge"; import type * as React from "react"; export interface ExternalCharterBadgeProps extends React.ComponentPropsWithoutRef { /** The adapter that sourced the charter (e.g. "voyant-connect", "custom"). */ sourceProvider: string; } /** * Small inline badge that surfaces charter provenance to admin/storefront UIs. * Renders as a subtle "External ยท " pill so operators (and shoppers, * if surfaced) can tell at a glance which inventory comes from upstream. */ export declare function ExternalCharterBadge({ sourceProvider, className, ...props }: ExternalCharterBadgeProps): React.JSX.Element;