import React from 'react'; import type { GodotViewProps } from './types'; import { Node } from '../types'; export interface GodotViewRef { pause(): void; resume(): void; getRoot(): Node; isReady(): boolean; emitMessage(message: any): void; } export declare const useGodotRef: () => React.RefObject; export interface GodotViewComponentProps extends GodotViewProps { ref?: React.Ref; } export declare const GodotView: React.ForwardRefExoticComponent> & { startDrawing: () => void; stopDrawing: () => void; }; //# sourceMappingURL=GodotView.d.ts.map