import { MeshEditWarning } from "../warnings.ts"; import type { EditableMesh, ElementSelection } from "../types.ts"; export interface FillHoleOptions { readonly method?: "triangulate" | "ngon" | "beautify"; } export interface FillHoleResult { readonly mesh: EditableMesh; readonly newFaces: ElementSelection; readonly warnings?: readonly MeshEditWarning[]; } export declare function fillHole(em: EditableMesh, boundary: ElementSelection, opts?: FillHoleOptions): FillHoleResult; //# sourceMappingURL=fill-hole.d.ts.map