/** * Text Rendering for OpenSCAD * * Implements 3D text generation using manifold primitives. * Creates extruded text from basic geometric shapes representing characters. */ import type { ManifoldObject } from "./types"; /** * Create 3D text geometry * * @param text - The text string to render * @param options - Text options * @returns ManifoldObject containing extruded text */ export declare function createText(text: string, options?: { size?: number; font?: string; halign?: "left" | "center" | "right"; valign?: "baseline" | "center" | "top" | "bottom"; spacing?: number; direction?: "ltr" | "rtl" | "ttb" | "btt"; language?: string; script?: string; $fn?: number; }): Promise; /** * Create 2D text outline (for linear_extrude) */ export declare function createText2D(text: string, options?: { size?: number; halign?: "left" | "center" | "right"; valign?: "baseline" | "center" | "top" | "bottom"; spacing?: number; }): Promise; //# sourceMappingURL=text.d.ts.map