// Copyright © 2022 BytePlusRTC All rights reserved. // SPDX-License-Identifier: MIT import React from 'react'; type VertcViewProps = { viewId: string; kind: 'SurfaceView' | 'TextureView' | 'View' | 'UIView'; children?: any; style?: any; onViewLoad?: () => void; }; export type NativeViewComponentProps = Omit & { onLoad?: () => void; }; export declare class NativeViewComponent extends React.Component { render(): React.ReactNode; } export {};