/// <reference types="react" />
import { ActiveErrorMessage } from "../../../../../react-components/src";
import { MobileChatSidePaneTabHeaderProps } from '../../common/TabHeader';
import { CallCompositeOptions } from '../CallComposite';
import { SidePaneRenderer } from '../components/SidePane/SidePaneProvider';
import { CapabilitiesChangeNotificationBarProps } from '../components/CapabilitiesChangedNotificationBar';
/**
 * @internal
 */
export interface DialpadPageProps {
    mobileView: boolean;
    options?: CallCompositeOptions;
    modalLayerHostId: string;
    updateSidePaneRenderer: (renderer: SidePaneRenderer | undefined) => void;
    mobileChatTabHeader?: MobileChatSidePaneTabHeaderProps;
    latestErrors: ActiveErrorMessage[];
    onDismissError: (error: ActiveErrorMessage) => void;
    capabilitiesChangedNotificationBarProps?: CapabilitiesChangeNotificationBarProps;
    onSetDialpadPage: () => void;
    dtmfDialerPresent: boolean;
    compositeAudioContext?: AudioContext;
}
/**
 * @internal
 */
export declare const DtmfDialpadPage: (props: DialpadPageProps) => JSX.Element;
//# sourceMappingURL=DtmfDialpadPage.d.ts.map