/** * CveLink Component * * Displays a CVE ID with an external link icon that links to the NIST NVD database. * Part of the ODS (OpenFrame Design System) platform components. * * @example * ```tsx * * ``` */ import React from 'react'; export interface CveLinkProps { /** CVE ID (e.g., "CVE-2024-1234") */ cveId: string; /** Additional CSS classes */ className?: string; } export declare const CveLink: React.FC; //# sourceMappingURL=CveLink.d.ts.map