/// export interface SummaryTableItem { title?: string; label?: string; value?: string; description?: string; valueStriketrough?: string; isSuccess?: boolean; isStriketrough?: boolean; isBelowLine?: boolean; isBold?: boolean; } export interface SummaryTableProps { title?: string; items: SummaryTableItem[]; kind?: 'normal' | 'compact'; badgeText?: string; badgeIcon?: any; background?: 'grey-50'; useIndent?: boolean; useResultLine?: boolean; } declare const SummaryTable: ({ items, kind, background, useIndent, badgeText, badgeIcon, useResultLine, title, }: SummaryTableProps) => JSX.Element; export default SummaryTable;