import React from 'react'; type VolcViewProps = { viewId: string; kind: 'SurfaceView' | 'UIView'; children?: any; style?: any; onViewLoad?: () => void; }; export type NativeSurfaceViewComponentProps = Omit & { onLoad?: () => void; }; export declare class NativeViewComponent extends React.Component { render(): React.ReactNode; } export {};