import * as React from 'react'; import { ExpoWebGLRenderingContext } from 'expo-gl'; import { ViewStyle } from 'react-native'; import { CanvasProps } from '../../canvas'; interface NativeCanvasProps extends CanvasProps { style?: ViewStyle; nativeRef_EXPERIMENTAL?: React.MutableRefObject; onContextCreated?: (gl: ExpoWebGLRenderingContext) => Promise | void; } export declare const Canvas: React.MemoExoticComponent<(props: NativeCanvasProps) => JSX.Element>; export {};