import { Address } from '../foehn-address/address.type'; export interface FoehnRecapSectionElement { key: string; value: Address | string | number | boolean; acceptEmptyValue?: boolean; /** * An optional Id, will be added on the `dd` DOM element. */ id?: string; isComment?: boolean; } export interface FoehnRecapSection { id?: string; titleKey: string; titleLevel?: 'h2' | 'h3' | 'h4' | 'h5' | 'h6'; elements: FoehnRecapSectionElement[]; }