import type { InputTypes } from '../types'; import type { ReportFormsSubjects } from '../runtime/constants/report-forms-subjects'; export interface IReportScheme { subject: ReportFormsSubjects title?: string text?: string list?: Array<{ text: string }> hasReason?: boolean subtext?: string items?: { type: InputTypes | string value: string label?: string placeholder?: string hideLabel?: boolean required?: boolean wide?: boolean text?: string marginClass?: string }[] }