import React from 'react';
import { Handlers, ScreenConfig } from '../types';
export type KeypadType = 'numeric' | 'default' | 'dollar';
export interface KeypadProps {
    config: ScreenConfig;
    type?: KeypadType;
    handlers: Handlers;
    value: string;
    isEmail?: boolean;
    isShiftOn?: boolean;
}
declare const Keypad: ({ handlers, value, config, type }: KeypadProps) => React.JSX.Element;
export default Keypad;
