import { default as React, FunctionComponent, ReactNode } from 'react'; import { PopupProps } from '../popup/popup'; export interface NumberKeyboardProps extends PopupProps { visible: boolean; rightActions: ReactNode; confirmText?: string; type: 'default' | 'rightColumn'; custom: Array; random: boolean; onChange?: (value: string) => void; onDelete?: () => void; onClose: () => void; onConfirm?: () => void; } export declare const NumberKeyboard: FunctionComponent & Omit, 'onChange' | 'onClick' | 'title'>>;