import * as React from 'react'; export declare type HTMLTableDataProps = Omit, 'onClick'>; export interface KeypadItemProps extends HTMLTableDataProps { value?: string; onPress?: (value: string) => void; onLongPress?: () => void; } declare const KeypadItem: React.FC; export default KeypadItem;