import * as React from 'react'; import type { ProblemWithCodeframe } from '../lint'; export declare function ApiLevel({ level, colorVariable }: { level: string; colorVariable: string; }): React.JSX.Element; export declare function StatusDistribution({ summary, }: { summary: { total: number; levels: Record; }; }): React.JSX.Element; export declare function InstanceStatus({ severity }: { severity: 'Warn' | 'Error' | 'Pass'; }): React.JSX.Element; export declare function RuleStatus({ errors, warnings }: { errors: number; warnings: number; }): React.JSX.Element; export declare function LevelStatus({ errors, warnings }: { errors: number; warnings: number; }): React.JSX.Element; export declare function Instance({ problem }: { problem: ProblemWithCodeframe; }): React.JSX.Element; export declare const renderRowSubComponent: (data: ProblemWithCodeframe) => React.JSX.Element; //# sourceMappingURL=components.d.ts.map