@twilio/flex-ui
Version:
Twilio Flex UI
31 lines (30 loc) • 1.47 kB
TypeScript
import { DynamicContentStore } from "../../flex-ui-core/src";
import * as React from "react";
import { OutboundDialerPanelChildrenProps, OutboundDialerPanelProps } from "./OutboundDialerPanel.definitions";
/**
* @classdesc Panel containing components to facilitate outbound calling task.
* Can be themed with `Theme.OutboundDialerPanel` in [Theme](Theme).
* @component
* @hideconstructor
* @param {OutboundDialerPanel.OutboundDialerPanelProps} props - Properties to be passed to configure this component.
* @category Components / Programmable
* @subcategory Components
* @private
*/
export declare class OutboundDialerPanel extends React.PureComponent<OutboundDialerPanelProps> {
static readonly displayName = "OutboundDialerPanel";
/**
* Dynamic content store
*
* @static
* @type {DynamicContentStore<OutboundDialerPanel.OutboundDialerPanelChildrenProps>}
* @readonly
*/
static readonly Content: DynamicContentStore<OutboundDialerPanelChildrenProps>;
render(): JSX.Element;
}
export declare const Connected: import("react-redux").ConnectedComponent<React.FC<Pick<OutboundDialerPanelChildrenProps, keyof OutboundDialerPanelChildrenProps> & {
theme?: import("@emotion/react").Theme;
}>, import("react-redux").Omit<Pick<OutboundDialerPanelChildrenProps, keyof OutboundDialerPanelChildrenProps> & {
theme?: import("@emotion/react").Theme;
}, "worker" | "hasIncomingCallReservation"> & OutboundDialerPanelProps>;