import React from 'react'; import type { Option } from './type'; export declare type Value = number | string | (string | number)[] | Date[] | undefined | number[] | string[] | Option; declare type Type = { fields: Record; onChange?: (key: string, value: Value) => void; }; declare const context: React.Context; export default context;