/** * Dynamic Array Functions — Native RuntimeValue Implementation */ import type { RuntimeValue } from "../runtime/values.js"; export declare function fnFILTER(args: RuntimeValue[]): RuntimeValue; export declare function fnSORT(args: RuntimeValue[]): RuntimeValue; export declare function fnUNIQUE(args: RuntimeValue[]): RuntimeValue; export declare function fnSORTBY(args: RuntimeValue[]): RuntimeValue; export declare function fnSUBTOTAL(args: RuntimeValue[]): RuntimeValue; export declare function fnAGGREGATE(args: RuntimeValue[]): RuntimeValue; export declare function fnSEQUENCE(args: RuntimeValue[]): RuntimeValue; export declare function fnRANDARRAY(args: RuntimeValue[]): RuntimeValue; export declare function fnTOCOL(args: RuntimeValue[]): RuntimeValue; export declare function fnTOROW(args: RuntimeValue[]): RuntimeValue; export declare function fnCHOOSEROWS(args: RuntimeValue[]): RuntimeValue; export declare function fnCHOOSECOLS(args: RuntimeValue[]): RuntimeValue; export declare function fnVSTACK(args: RuntimeValue[]): RuntimeValue; export declare function fnHSTACK(args: RuntimeValue[]): RuntimeValue; export declare function fnTAKE(args: RuntimeValue[]): RuntimeValue; export declare function fnDROP(args: RuntimeValue[]): RuntimeValue; export declare function fnWRAPROWS(args: RuntimeValue[]): RuntimeValue; export declare function fnWRAPCOLS(args: RuntimeValue[]): RuntimeValue; export declare function fnEXPAND(args: RuntimeValue[]): RuntimeValue;