import { FC } from 'react'; interface Props { label: string; name?: string; large: boolean; value: number | null; } export declare const SummaryItem: FC; export {};