interface IProps { data: any; connectTask: (value: boolean) => void; } /** * 关联任务详情的头部信息 * @param props 任务详情数据 * @returns */ declare const Header: (props: IProps) => JSX.Element; export default Header;