import { DynamicContentStore } from "../../../../flex-ui-core/src"; import * as React from "react"; import { ConnectingOutboundCallCanvasActionsChildrenKeys, ConnectingOutboundCallCanvasActionsProps } from "./ConnectingOutboundCallCanvasActions.definitions"; /** * @classdesc This component renders actions for Outbound call canvas. * @class ConnectingOutboundCallCanvasActions * @component * @hideconstructor * @param {ConnectingOutboundCallCanvasActions.ConnectingOutboundCallCanvasActionsProps} props - Properties to be passed to configure this component. * @category Components / Programmable * @subcategory Components */ declare class ConnectingOutboundCallCanvasActions extends React.Component { static readonly displayName = "ConnectingOutboundCallCanvasActions"; /** * Dynamic content store * * @static * @type {DynamicContentStore} * @readonly */ static readonly Content: DynamicContentStore; render(): JSX.Element; private onCancelCall; } declare const ConnectingOutboundCallCanvasActionsThemed: React.ComponentType & typeof ConnectingOutboundCallCanvasActions; export { ConnectingOutboundCallCanvasActionsThemed as ConnectingOutboundCallCanvasActions };