import type { ElementalIfCondition } from "@/types/conditions.types"; interface ConditionsProps { value: ElementalIfCondition | undefined; onChange: (value: ElementalIfCondition | undefined) => void; /** Update display state without persisting to the node — used for pending "add" operations. */ onLocalChange?: (value: ElementalIfCondition | undefined) => void; } export declare const Conditions: ({ value, onChange, onLocalChange }: ConditionsProps) => import("react/jsx-runtime").JSX.Element | null; export {};