import { ReactElement } from "react"; import { BaseProps } from "../../types/baseProps"; import { Object3DProps } from "../../types/object3DProps"; export declare const NAME = "meshGroup"; export interface MeshGroupProps extends BaseProps, Object3DProps { meshs?: Array; children: ReactElement[]; } export declare function MeshGroup(params: MeshGroupProps): any;