import React from 'react'; import { PropsTypes } from '@orca-fe/deye-typings'; import './ValueDebugger.less'; export interface ValueDebuggerProps extends React.HTMLAttributes { value: any; title?: string; } declare const ValueDebugger: { (props: ValueDebuggerProps): JSX.Element; title: string; propsDef: PropsTypes[]; }; export default ValueDebugger;