import React from "react"; import { SecurityResource } from "../../types/securityResources"; interface ResourceCardProps { resource: SecurityResource; onClick?: (resource: SecurityResource) => void; className?: string; testId?: string; } /** * Compact, color-coded resource card. * * Densely packed dashboards forced us to constrain card content: * - Title is clamped to 2 lines (no horizontal overflow on long titles). * - Type badge is constrained in width and clipped with ellipsis. * - Description is truncated to ≤100 chars (preserved for existing test). * - Tags are limited to 3 visible tags with a "+N" indicator for the rest. * - A left accent border encodes the CIA component (purple / green / blue). */ declare const ResourceCard: React.FC; export default ResourceCard; //# sourceMappingURL=ResourceCard.d.ts.map