import React from 'react'; import { SummaryFormula } from '../types/summary.types'; export interface SummaryProps { style?: React.CSSProperties, align?: "left" | "center" | "right" | "justify" | "inherit", label?: string, formula: SummaryFormula, } export const Summary: React.FC = () => { return ( <> ) }