/*! * Copyright 2025 Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: MIT */ export type FunctionCategory = 'string' | 'numeric' | 'aggregation' | 'boolean' | 'array' | 'object' | 'date' | 'higher-order'; export interface FunctionParam { name: string; optional?: boolean; variable?: boolean; } export interface FunctionType { params: ReadonlyArray; category: FunctionCategory; description: string; } export type JsonataFunctionsMap = Map; export declare const jsonataFunctions: JsonataFunctionsMap;