import { DynamicContentStore } from "../../../flex-ui-core/src"; import * as React from "react"; import { TaskInfoPanelChildrenKeys, TaskInfoPanelChildrenProps, TaskInfoPanelProps } from "./TaskInfoPanel.definitions"; /** * @class TaskInfoPanel * @classdesc This component renders task info panel. * Can be themed with `Theme.TaskInfoPanel` in [Theme](Theme). * @component * @hideconstructor * @param {TaskInfoPanel.TaskInfoPanelProps} props - Properties to be passed to configure this component. * @category Components / Programmable * @subcategory Components */ export declare class TaskInfoPanel extends React.PureComponent { static displayName: string; /** * Dynamic content store * * @static * @type {DynamicContentStore} * @readonly */ static readonly Content: DynamicContentStore; render(): JSX.Element; }