import { DynamicContentStore } from "../../../flex-ui-core/src"; import * as React from "react"; import { SupervisorTaskCanvasChildrenKeys, TaskCanvasChildrenProps, TaskCanvasProps } from "./TaskCanvas.definitions"; import { TaskCanvasHeader } from "./TaskCanvasHeader"; import { TaskCanvasTabs } from "./TaskCanvasTabs"; /** * @alias Supervisor․TaskCanvas * @classdesc This is a container for Supervisor.TaskCanvas * Can be themed with `Theme.Supervisor.TaskCanvas` in [Theme](Theme). * @component * @hideconstructor * @category Components / Programmable * @subcategory Components */ export declare class TaskCanvas extends React.PureComponent { static readonly displayName = "SupervisorTaskCanvas"; /** * Dynamic content store * * @name Content * @static * @type {DynamicContentStore} * @memberof Supervisor․TaskCanvas * @example Supervisor.TaskCanvas.Content * @readonly */ static readonly Content: DynamicContentStore; /** * Header * * @name Header * @static * @type {TaskCanvasHeader} * @memberof Supervisor․TaskCanvas * @example Supervisor.TaskCanvas.Header * @readonly */ static readonly Header: typeof TaskCanvasHeader; /** * Tabs * * @name Tabs * @static * @type {TaskCanvasTabs} * @memberof Supervisor․TaskCanvas * @example Supervisor.TaskCanvas.Tabs * @readonly */ static readonly Tabs: typeof TaskCanvasTabs; render(): JSX.Element; } export declare const Connected: { new (props: Omit | Readonly>): { render(): JSX.Element; context: any; setState(state: {} | ((prevState: Readonly<{}>, props: Readonly>) => {} | Pick<{}, K>) | Pick<{}, K>, callback?: () => void): void; forceUpdate(callback?: () => void): void; readonly props: Readonly> & Readonly<{ children?: React.ReactNode | undefined; }>; state: Readonly<{}>; refs: { [key: string]: React.ReactInstance; }; componentDidMount?(): void; shouldComponentUpdate?(nextProps: Readonly>, nextState: Readonly<{}>, nextContext: any): boolean; componentWillUnmount?(): void; componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void; getSnapshotBeforeUpdate?(prevProps: Readonly>, prevState: Readonly<{}>): any; componentDidUpdate?(prevProps: Readonly>, prevState: Readonly<{}>, snapshot?: any): void; componentWillMount?(): void; UNSAFE_componentWillMount?(): void; componentWillReceiveProps?(nextProps: Readonly>, nextContext: any): void; UNSAFE_componentWillReceiveProps?(nextProps: Readonly>, nextContext: any): void; componentWillUpdate?(nextProps: Readonly>, nextState: Readonly<{}>, nextContext: any): void; UNSAFE_componentWillUpdate?(nextProps: Readonly>, nextState: Readonly<{}>, nextContext: any): void; }; new (props: Omit, context: any): { render(): JSX.Element; context: any; setState(state: {} | ((prevState: Readonly<{}>, props: Readonly>) => {} | Pick<{}, K>) | Pick<{}, K>, callback?: () => void): void; forceUpdate(callback?: () => void): void; readonly props: Readonly> & Readonly<{ children?: React.ReactNode | undefined; }>; state: Readonly<{}>; refs: { [key: string]: React.ReactInstance; }; componentDidMount?(): void; shouldComponentUpdate?(nextProps: Readonly>, nextState: Readonly<{}>, nextContext: any): boolean; componentWillUnmount?(): void; componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void; getSnapshotBeforeUpdate?(prevProps: Readonly>, prevState: Readonly<{}>): any; componentDidUpdate?(prevProps: Readonly>, prevState: Readonly<{}>, snapshot?: any): void; componentWillMount?(): void; UNSAFE_componentWillMount?(): void; componentWillReceiveProps?(nextProps: Readonly>, nextContext: any): void; UNSAFE_componentWillReceiveProps?(nextProps: Readonly>, nextContext: any): void; componentWillUpdate?(nextProps: Readonly>, nextState: Readonly<{}>, nextContext: any): void; UNSAFE_componentWillUpdate?(nextProps: Readonly>, nextState: Readonly<{}>, nextContext: any): void; }; readonly displayName: string; contextType?: React.Context | undefined; } & import("hoist-non-react-statics").NonReactStatics<{ (props: TaskCanvasChildrenProps): JSX.Element; displayName: string; } & import("hoist-non-react-statics").NonReactStatics & { theme?: import("@emotion/react").Theme; }>, {}>, {}>;