import { StyleProp, ViewStyle, TextStyle } from 'react-native'; import type { KeyConfig } from './keyboard'; interface Props { onPress?: (value: string) => void; config: KeyConfig; baseSize?: number; margin?: number; fontSize?: number; keyStyle?: StyleProp; textStyle?: StyleProp; } declare const Cell: ({ onPress, config, ...props }: Props) => JSX.Element; export default Cell;