import type { IStage, IGraphic, IGroup, ILayer, IGlyph } from '@visactor/vrender'; import React from 'react'; import ReactReconciler from 'react-reconciler'; import type { Container, Instance, Props, TextInstance, Type } from './types'; export declare const createInstance: (type: Type, props: Props, rootContainerInstance?: Container) => ILayer | IGroup | IGraphic> | IGlyph>; export declare const reconcilor: ReactReconciler.Reconciler; export declare const render: (component: React.ReactNode, target: IStage | IGroup, callback?: (() => void) | null) => void;