export type FieldName = 'phone' | 'innOrPinfl' | 'name' | 'product' | 'acceptCheckbox'; type LengthFields = Record; type NoLengthFields = 'acceptCheckbox'; export type FieldConfig = Partial> & Omit; export type FieldValue = string | number | null; export type InnFieldMaskKey = 'innMask' | 'pinflMask'; export interface FieldConfigValue { minLength: number; maxLength?: number; } export {};