import type { GnataConfig } from './types.js'; export type { GnataConfig } from './types.js'; /** * Override the default asset URLs for WASM and wasm_exec.js. * * Call before the first `jsonata()` evaluation if your assets are * served from a non-default path. */ export declare function configure(overrides: Partial): void; /** * Evaluate a JSONata expression against data using gnata WASM. * * API-compatible with the `jsonata` npm package's default export: * `jsonata(expr).evaluate(data)`. */ export declare function jsonata(expression: string): { evaluate(data: unknown): Promise; }; //# sourceMappingURL=index.d.ts.map