export function pmv(tdb: any, tr: any, vr: any, rh: any, met: any, clo: any, wme?: number, standard?: string, kwargs?: {}): { pmv: number; }; export type PmvKwargs = { /** * - select the SI (International System of Units) or the IP (Imperial Units) system. */ units: "SI" | "IP"; /** * - Default is True. By default, if the inputs are outside the standard applicability * limits the function returns NaN. If false, returns pmv and ppd values even if input values are outside * the applicability limits of the model. * * The ASHRAE 55 2020 limits are 10 < tdb [°C] < 40, 10 < tr [°C] < 40, * 0 < vr [m/s] < 2, 1 < met [met] < 4, and 0 < clo [clo] < 1.5. * The ISO 7730 2005 limits are 10 < tdb [°C] < 30, 10 < tr [°C] < 40, * 0 < vr [m/s] < 1, 0.8 < met [met] < 4, 0 < clo [clo] < 2, and -2 < PMV < 2. */ limit_inputs: boolean; /** * - This only applies if standard = "ASHRAE". * * Default is True. By default, it is assumed that the occupant has control over the airspeed. * In this case, the ASHRAE 55 Standard does not impose any airspeed limits. * On the other hand, if the occupant has no control over the airspeed, * the ASHRAE 55 imposes an upper limit for v which varies as a function of * the operative temperature, for more information please consult the Standard. */ airspeed_control: boolean; /** * - If true, rounds pmv to 2 decimal places. Defaults to true. */ round_output: boolean; }; //# sourceMappingURL=pmv.d.ts.map