import React, { ReactNode } from 'react';
import { Handlers, ScreenConfig } from '../types';
export interface KeypadModalProps {
    config: ScreenConfig;
    modalContentConfig: ScreenConfig;
    handlers: Handlers;
    subtitle?: string | null;
    title: string;
    renderKeypad: () => ReactNode;
}
declare const KeypadModal: ({ config, modalContentConfig, handlers, subtitle, title, renderKeypad }: KeypadModalProps) => React.JSX.Element;
export default KeypadModal;
