import { Component } from '@formio/core'; export type ComponentType = Omit & { components?: ComponentType[]; } & { title?: string; } & Record;