import { type DialerProps, type DialerThemeProps } from "../../internal-flex-commons/src"; import * as React from "react"; export type { DialerThemeProps, DialerProps }; interface DialerState { phoneNumber: string; } /** * A dialer that contains a phone number input field, dialpad and a call button. * Can be themed with `Theme.Dialer` in [Theme](Theme). * @component * @category Components / Basic * @hideconstructor * @param {Dialer.DialerProps} props - Properties to configure this component. * @private */ export declare class Dialer extends React.PureComponent { state: { phoneNumber: string; }; render(): JSX.Element; private registerDialPadAction; private onKeyPress; private onStartOutboundCall; }