import type { ModelError } from './ModelError'; import type { ModelValidationState } from './ModelValidationState'; export type ModelStateEntry = { rawValue?: any; attemptedValue?: string | null; readonly errors?: Array | null; validationState?: ModelValidationState; readonly isContainerNode?: boolean; readonly children?: Array | null; };