import type { EditableMesh as EditableMeshValue } from "../types.ts"; export interface RecomputeNormalsOptions { readonly weighting?: "angle" | "area" | "uniform"; readonly creaseAngle?: number; } export declare function recomputeNormals(em: EditableMeshValue, opts?: RecomputeNormalsOptions): EditableMeshValue; //# sourceMappingURL=recompute-normals.d.ts.map