// This file is part of Coog. The COPYRIGHT file at the top level of // this repository contains the full copyright notices and license terms. import { QuestionsProps } from "./Questions/Questions.types"; import { GroupProps } from "./Group/Group.types"; export interface SummaryBlockProps { /** * id */ id?: string; /** * list: flat list of questions */ list?: Array; /** * groups: groups of questions list */ groups?: Array; }