import { DynamicContentStore } from "../../../../flex-ui-core/src"; import * as React from "react"; import { SupervisorTaskCardChildrenKeys, TaskCardChildrenProps, TaskCardProps } from "./TaskCard.definitions"; /** * @alias Supervisor․TaskCard * @classdesc This is a container for TaskCard. * Can be themed with `Theme.TaskCard` in [Theme](Theme). * @component * @hideconstructor * @category Components / Programmable * @subcategory Components */ export declare class TaskCard extends React.PureComponent { static displayName: string; /** * Dynamic content store * * @name Content * @static * @type {DynamicContentStore} * @memberof Supervisor․TaskCard * @example Supervisor․TaskCard.Content * @readonly */ static readonly Content: DynamicContentStore; 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: TaskCardChildrenProps): JSX.Element; displayName: string; } & import("hoist-non-react-statics").NonReactStatics & Partial> & Partial>, "conference" | "call" | "task" | "onClick" | "icon" | "selected" | "firstLine" | "secondLine" | "channelDefinition" | "conversation" | "chatChannel" | "highlighted"> & { theme?: import("@emotion/react").Theme; }>, {}>, {}>;