import type { FormworkInput, FormworkResult } from './types.js'; /** * Calculate formwork area requirements * * @param input - Formwork calculation parameters * @returns Formwork area results * @throws RangeError if a dimension consumed by the element type's area formula * is not positive (column/beam/footing: length, width, height; slab: length, * width; wall: length, height), or if quantity is not positive */ export declare function formwork(input: FormworkInput): FormworkResult; //# sourceMappingURL=formwork.d.ts.map