import React, { ReactNode } from 'react'; import { EngineOnlyProps } from './Engine'; import { WebGPUEngineOnlyProps } from './WebGPUEngine'; import { SharedEngineProps } from './engineProps'; export type FallbackEngineProps = { engineProps?: EngineOnlyProps; webGPUEngineProps?: WebGPUEngineOnlyProps; } & SharedEngineProps & { children?: ReactNode | undefined; } & React.CanvasHTMLAttributes; declare const ReactBabylonjsFallbackEngine: React.FC; export default ReactBabylonjsFallbackEngine;