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