import { Form } from '@formio/core'; import { ComponentType } from './ComponentType.js'; export type FormType = Omit & { components: ComponentType[]; } & Record;