import { FC } from 'react'; export declare enum RiskType { Medium = 0, High = 1, VeryHigh = 2 } interface RowProps { result: string; risk: RiskType; recommendation: string; } export declare const Row: FC; export {}; //# sourceMappingURL=row.d.ts.map