export interface ICostItems { title: string price: number } export interface ICostSummaryProps { items: ICostItems[] }