/** * 调拨单详情信息面板 */ import { Component } from 'react'; declare class Info extends Component { constructor(props: any); componentDidMount(): Promise; render(): JSX.Element; } interface InfoState { value: object | null; } declare type InfoProps = typeof Info.defaultProps & {}; export default Info;