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