/** * Engineering Functions — Native RuntimeValue implementation. */ import type { RuntimeValue } from "../runtime/values.js"; type NativeFn = (args: RuntimeValue[]) => RuntimeValue; export declare const fnBIN2DEC: NativeFn; export declare const fnDEC2BIN: NativeFn; export declare const fnDEC2HEX: NativeFn; export declare const fnDEC2OCT: NativeFn; export declare const fnHEX2DEC: NativeFn; export declare const fnOCT2DEC: NativeFn; export declare const fnBIN2HEX: NativeFn; export declare const fnBIN2OCT: NativeFn; export declare const fnHEX2BIN: NativeFn; export declare const fnHEX2OCT: NativeFn; export declare const fnOCT2BIN: NativeFn; export declare const fnOCT2HEX: NativeFn; export declare const fnBESSELJ: NativeFn; export declare const fnBESSELI: NativeFn; export declare const fnBESSELK: NativeFn; export declare const fnBESSELY: NativeFn; export declare const fnDELTA: NativeFn; export declare const fnGESTEP: NativeFn; export declare const fnCOMPLEX: NativeFn; export declare const fnIMREAL: NativeFn; export declare const fnIMAGINARY: NativeFn; export declare const fnIMABS: NativeFn; export declare const fnIMARGUMENT: NativeFn; export declare const fnIMCONJUGATE: NativeFn; export declare const fnIMSUM: NativeFn; export declare const fnIMSUB: NativeFn; export declare const fnIMPRODUCT: NativeFn; export declare const fnIMDIV: NativeFn; export declare const fnIMPOWER: NativeFn; export declare const fnIMSQRT: NativeFn; export declare const fnIMLN: NativeFn; export declare const fnIMLOG2: NativeFn; export declare const fnIMLOG10: NativeFn; export declare const fnIMEXP: NativeFn; export declare const fnIMSIN: NativeFn; export declare const fnIMCOS: NativeFn; export declare const fnIMTAN: NativeFn; export declare const fnIMCSC: NativeFn; export declare const fnIMSEC: NativeFn; export declare const fnIMCOT: NativeFn; export declare const fnIMSINH: NativeFn; export declare const fnIMCOSH: NativeFn; export declare const fnIMTANH: NativeFn; export declare const fnIMCSCH: NativeFn; export declare const fnIMSECH: NativeFn; export declare const fnIMCOTH: NativeFn; export declare const fnBITAND: NativeFn; export declare const fnBITOR: NativeFn; export declare const fnBITXOR: NativeFn; export declare const fnBITLSHIFT: NativeFn; export declare const fnBITRSHIFT: NativeFn; export {};