import { MeshEditWarning } from "../warnings.ts"; import type { EditableMesh, ElementSelection } from "../types.ts"; export interface GridFillOptions { readonly spanMode?: "auto" | number; } export interface GridFillResult { readonly mesh: EditableMesh; readonly newFaces: ElementSelection; readonly warnings?: readonly MeshEditWarning[]; } export declare function gridFill(em: EditableMesh, boundary: ElementSelection, opts?: GridFillOptions): GridFillResult; //# sourceMappingURL=grid-fill.d.ts.map