import { TaskContextProps } from "../../../context"; import { ThemeProps } from "../../../theme"; /** * Properties of Outbound call canvas action. * * @typedef {TaskContextSource.TaskContextProps} ConnectingOutboundCallCanvasActionsProps * @memberof ConnectingOutboundCallCanvasActions */ export interface ConnectingOutboundCallCanvasActionsProps extends TaskContextProps, ThemeProps { } /** * Properties of children in Outbound call canvas action. * * @typedef {ConnectingOutboundCallCanvasActions.ConnectingOutboundCallCanvasActionsProps} ConnectingOutboundCallCanvasActionsChildrenProps * @property {Theme.ConnectingOutboundCallCanvasThemeProps} [theme.ConnectingOutboundCallCanvas] - Theme * @memberof ConnectingOutboundCallCanvasActions */ export interface ConnectingOutboundCallCanvasActionsChildrenProps extends ConnectingOutboundCallCanvasActionsProps { } export declare enum ConnectingOutboundCallCanvasActionsChildrenKeys { cancel = "Cancel" }