import type { LoadInput, LoadResult } from './types.js'; /** * Calculate beam load analysis results * * Supports simple, cantilever, and fixed beam supports with * uniform, concentrated, or combined loading. * * @param input - Beam load input parameters * @returns Load analysis result * @throws RangeError if span is not positive, a required load value for the * selected load type is missing, or pointPosition lies outside [0, span] */ export declare function beamLoad(input: LoadInput): LoadResult; //# sourceMappingURL=beamLoad.d.ts.map