import React from 'react'; import CustomKeyboardViewBase, { CustomKeyboardViewBaseProps } from './CustomKeyboardViewBase'; export default class CustomKeyboardView extends CustomKeyboardViewBase { static displayName: string; componentDidUpdate(prevProps: CustomKeyboardViewBaseProps): Promise; getStyle: () => { height: number | undefined; }; render(): React.JSX.Element | null; }