import { TaskContextProps } from "../../../context/TaskContext"; export { CallCanvasDialpadChildrenKeys } from "../../../../internal-flex-commons/src"; export interface DialpadState { digits: string; } /** * Properties of call canvas dialpad. * * @typedef {TaskContextProps} CallCanvasDialpad.CallCanvasDialpadProps * @property {DialpadState} dialpadState - Represents the state of the dialpad. * @property {boolean} [compact] - If dialpad should be compact. */ export interface CallCanvasDialpadProps { dialpadState: DialpadState; compact?: boolean; } /** * Properties of children in call canvas dialpad. * * @typedef {CallCanvasDialpadProps} CallCanvasDialpad.CallCanvasDialpadChildrenProps */ export interface CallCanvasDialpadChildrenProps extends CallCanvasDialpadProps, TaskContextProps { }