export type Problem = {
  id: number;
  title: string;
};
export type Properties = {
  1: string;
  2: string;
  3: string;
  4: string;
};
export type Types = {
  talk: number;
  issue: number;
  answer: number;
  crition: number;
  text: number;
  qasection: number;
  sanad: number;
  research: number;
  rezumeh: number;
  rgsection: number;
  support: number;
  task: number;
};
export type SectionsCommentsToShow = string | number | null | undefined;
export type Errors = {};
export type Files = [];