import React from 'react'; export type SelectionSourceType = 'ai' | 'manual' | 'placeholder'; interface SelectionSourceBadgeProps { source: SelectionSourceType; className?: string; hidden?: boolean; } /** * Small pill badge indicating whether a vendor was selected manually or by AI. * Colors follow OpenMSP design tokens. */ export declare function SelectionSourceBadge({ source, hidden }: SelectionSourceBadgeProps): React.JSX.Element | null; export {}; //# sourceMappingURL=selection-source-badge.d.ts.map