import { Mesh, RawShaderMaterial } from "three"; interface optType { [key: string]: any; } interface customMeshType { mesh: Mesh; [key: string]: any; } declare function createBackground(opt?: optType): customMeshType; export { createBackground }; export type { customMeshType };