export declare type PrimitiveValue = string | number | boolean | null; export declare type ListValue = PrimitiveValue[]; declare type FieldValue = PrimitiveValue | ListValue; export default FieldValue;