import { MeshEditWarning } from "../warnings.ts"; import type { EditableMesh, ElementSelection } from "../types.ts"; export interface InsetOptions { readonly thickness: number; readonly depth?: number; readonly individual?: boolean; } export interface InsetResult { readonly mesh: EditableMesh; readonly insetFaces: ElementSelection; readonly boundaryFaces: ElementSelection; readonly rimEdges: ElementSelection; readonly warnings?: readonly MeshEditWarning[]; } export declare function inset(em: EditableMesh, faces: ElementSelection, opts: InsetOptions): InsetResult; //# sourceMappingURL=inset.d.ts.map