import type { Context, Value } from '../types'; export declare function parse(x: string, context: Context): Value; /** * A wrapper around the Source Parser's `tokenize` function. Set `asRuntime` to `true` * if the function is meant to be called from Source code. */ export declare function tokenize(x: string, context: Context, asRuntime?: boolean): Value;