/// interface BoolState { value: []; dataKey: string | number; dataType: string; } declare const JsonBool: ({ value, dataKey, dataType }: BoolState) => JSX.Element; export default JsonBool;