import React from 'react'; interface PlatformBadgeProps { platform?: { id: string; name: string; display_name: string; } | null; size?: 'xs' | 'sm' | 'md'; showLabel?: boolean; className?: string; } export declare function PlatformBadge({ platform, size, showLabel, className }: PlatformBadgeProps): React.JSX.Element | null; export {}; //# sourceMappingURL=platform-badge.d.ts.map