import React from 'react'; import { processColor, type ColorValue } from 'react-native'; import { TenTapView, useKeyboard } from '@vimeiro-co/tentap-editor'; import { useRefHandle } from '../../utils/useRefHandle'; import type { CustomKeyboardExtension } from './CustomKeyboardExtension'; export interface CustomKeyboardIOSProps { rootRef: React.RefObject; onKeyboardHideAndroid?: () => void; customKeyboard?: CustomKeyboardExtension; rootBackground?: ColorValue; } export const CustomKeyboardIOS = ({ rootRef, customKeyboard, rootBackground, }: CustomKeyboardIOSProps) => { const refHandle = useRefHandle(rootRef); const { keyboardHeight } = useKeyboard(); return ( ); };