import { DynamicContentStore } from "../../../flex-ui-core/src"; import * as React from "react"; import { WorkerCanvasChildrenKeys, WorkerCanvasProgrammableProps, WorkerCanvasProps } from "./WorkerCanvas.definitions"; /** * @class WorkerCanvas * @classdesc This is a container for WorkerCanvas that displays the agent details. * Can be themed with `Theme.Supervisor.WorkerCanvas` in [Theme](Theme). * @component * @hideconstructor * @param {WorkerCanvas.WorkerCanvasProgrammableProps} props - Properties to be passed to configure this component. * @category Components / Programmable * @subcategory Components */ export declare class WorkerCanvas extends React.PureComponent { static readonly displayName = "WorkerCanvas"; /** * Dynamic content store * * @static * @type {DynamicContentStore} * @readonly */ static readonly Content: DynamicContentStore; /** * Default properties * * @static * @type {WorkerCanvas.WorkerCanvasProps} * @readonly */ static readonly defaultProps: WorkerCanvasProgrammableProps; render(): JSX.Element; }