import type { ContactsSubjects } from '../runtime/constants/contacts-subjects'; import type { InputTypes } from '../types'; export interface IContactScheme { subject: ContactsSubjects items?: { type: InputTypes | string value: string label?: string required?: boolean wide?: boolean text?: string }[] }