import { k as PixiVNJsonComparationOperatorsType } from './PixiVNJsonIfElse-CgOnelja.js'; import '@drincs/pixi-vn'; /** * Internal storage key prefix used to pass positional parameters to a called label. * The full key is `PIXIVNJSON_PARAM_ID + `. * * @internal */ declare const PIXIVNJSON_PARAM_ID = "___param___"; /** * The URL of the JSON Schema for the current version of pixi-vn-json. * * You can use this constant as the value of the `$schema` field in your PixiVNJson documents * so that editors can validate and auto-complete the document. * * Example: * ```json * { * "$schema": "https://pixi-vn.com/schemas/1.13.0/schema.json" * } * ``` */ declare const PIXIVNJSON_SCHEMA_URL: string; /** * All comparison operators supported by {@link PixiVNJsonConditions} expressions. */ declare const PixiVNJsonComparationOperators: PixiVNJsonComparationOperatorsType[]; export { PIXIVNJSON_PARAM_ID, PIXIVNJSON_SCHEMA_URL, PixiVNJsonComparationOperators };