import { RiskCardProps } from './RiskCard.types'; /** * RiskCard component - Displays an individual compliance risk * * Supports two usage patterns: * 1. Direct API data injection: Pass the `risk` prop with API response data * 2. Individual props: Pass title, description, etc. separately for custom mapping * * @example Direct API data injection * ```tsx * const apiResponse = { title: 'Rule Name', description: 'Issue found', recommendation: 'Fix it' }; * * ``` * * @example Individual props * ```tsx * * ``` * * @example With custom labels * ```tsx * * ``` */ export declare const RiskCard: import('react').ForwardRefExoticComponent>; export default RiskCard; //# sourceMappingURL=RiskCard.d.ts.map