@twilio/flex-ui
Version:
Twilio Flex UI
25 lines (24 loc) • 1.04 kB
TypeScript
import { DynamicContentStore } from "../../../flex-ui-core/src";
import * as React from "react";
import { WorkerProfileChildrenKeys, WorkerProfileChildrenProps, WorkerProfileProps } from "./WorkerProfile.definitions";
/**
* @classdesc This is a container for WorkerProfile that shows the agent profile.
* @component
* @hideconstructor
* @param {WorkerProfile.WorkerProfileProps} props - Properties to be passed to configure this component.
* @category Components / Programmable
* @subcategory Components
*/
export declare class WorkerProfile extends React.PureComponent<WorkerProfileProps> {
static readonly displayName = "WorkerCanvasProfile";
static readonly friendlyName = "WorkerCanvasProfile";
/**
* Dynamic content store
*
* @static
* @type {DynamicContentStore<WorkerProfile.WorkerProfileChildrenProps, WorkerProfileChildrenKeys>}
* @readonly
*/
static readonly Content: DynamicContentStore<WorkerProfileChildrenProps, WorkerProfileChildrenKeys>;
render(): JSX.Element;
}