import * as React from "react"; import { type DialpadProps, type DialpadButtonThemeProps, type State, type DialpadThemeProps } from "../../internal-flex-commons/src"; export { DialpadButtonThemeProps, DialpadProps, DialpadThemeProps }; /** * A standard dialpad. * Can be themed with `Theme.Dialpad` in [Theme](Theme). * @component * @category Components / Basic * @hideconstructor * @param {Dialpad.DialpadProps} props * @private */ export declare class Dialpad extends React.PureComponent { render(): JSX.Element; }