/** * Built-in Functions and Methods * * Minimal set of built-in operations. Host applications provide * domain-specific functions via RuntimeContext. * * @internal - Not part of public API */ import { BUILTIN_FUNCTIONS } from './builtins/functions/index.js'; import { BUILTIN_METHODS } from './builtins/methods/index.js'; export { BUILTIN_FUNCTIONS, BUILTIN_METHODS }; /** * Read-only view of the built-in function names. * Derived from the keys of the internal {@link BUILTIN_FUNCTIONS} record and * frozen at module load so consumers cannot mutate it at runtime. */ export declare const BUILTIN_FUNCTION_NAMES: readonly string[];