import type { Mesh } from "../mesh-like.ts"; import { MeshEditWarning } from "./warnings.ts"; import type { EditableMesh as EditableMeshType, ToEditableOptions } from "./types.ts"; export declare function toEditable(mesh: Mesh, opts?: ToEditableOptions): EditableMeshType; export declare function toEditableWithDiagnostics(mesh: Mesh, opts?: ToEditableOptions): { readonly mesh: EditableMeshType; readonly warnings: readonly MeshEditWarning[]; }; //# sourceMappingURL=to-editable.d.ts.map