/** * ToolBadge Component * * Displays a tool type badge with icon for OpenFrame integrated tools. * Used in tables to show tool sources like Fleet MDM, MeshCentral, etc. * * @example * ```tsx * * * * ``` */ import React from 'react'; import { ToolType } from '../../types/tool.types'; export type { ToolType } from '../../types/tool.types'; export interface ToolBadgeProps { /** Tool type */ toolType: ToolType; /** Additional CSS classes */ className?: string; iconClassName?: string; } export declare const ToolBadge: React.FC; //# sourceMappingURL=ToolBadge.d.ts.map