import React from 'react'; import { CashKeyboardBaseProps } from './types'; export interface CashKeyboardProps extends CashKeyboardBaseProps { containerProps?: { renderType: 'modal' | 'popover'; open: boolean; [key: string]: any; }; variant?: 'intact' | 'simple'; shortcutsSize?: 'default' | 'large'; } declare const CashKeyboard: (props: CashKeyboardProps) => React.JSX.Element; export default CashKeyboard;