import React from 'react'; import { CashKeyboardBaseProps } from './types'; import './index.less'; export interface CashKeyboardSimpleProps extends CashKeyboardBaseProps { containerProps?: { renderType: 'modal' | 'popover'; open: boolean; [key: string]: any; }; children?: React.ReactNode; } declare const CashKeyboardSimple: (props: CashKeyboardSimpleProps) => React.JSX.Element | null; export default CashKeyboardSimple;