@twilio/flex-ui
Version:
Twilio Flex UI
34 lines (33 loc) • 1.08 kB
TypeScript
import { DynamicContentStore } from "../../../../flex-ui-core/src";
import * as React from "react";
import { AgentDesktopPanel1Props, Panel1ChildrenKeys } from "./Panel1.definitions";
/**
* @classdesc First panel of AgentDesktopView
* @class Panel1
* @component
* @hideconstructor
* @param {Panel1.AgentDesktopPanel1Props} props - props
* @category Components / Programmable
* @subcategory Components
*/
export declare class Panel1 extends React.Component<AgentDesktopPanel1Props> {
private static readonly friendlyName;
static readonly displayName = "AgentDesktopView.Panel1";
/**
* Dynamic content store
*
* @static
* @type {DynamicContentStore<Panel1.AgentDesktopPanel1Props, Panel1ChildrenKeys>}
* @readonly
*/
static readonly Content: DynamicContentStore<AgentDesktopPanel1Props, Panel1ChildrenKeys>;
/**
* Default properties
*
* @static
* @type {Panel1.AgentDesktopPanel1Props}
* @readonly
*/
static readonly defaultProps: Partial<AgentDesktopPanel1Props>;
render(): JSX.Element;
}