/** * This file is part of the NocoBase (R) project. * Copyright (c) 2020-2024 NocoBase Co., Ltd. * Authors: NocoBase Team. * * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License. * For more information, please refer to: https://www.nocobase.com/agreement. */ import React from 'react'; export declare function TriggerScopeProvider(props: any): any; export declare function TriggerDataInput(props: any): React.JSX.Element; export declare function GlobalTriggerWorkflowAction(props: any): React.JSX.Element; /** * JSON input with flow-engine variable support. * Inserts {{ ctx.xxx }} expressions; resolved via resolveExpressions at trigger time. */ export declare function ContextDataJsonInput({ value, onChange, ...props }: { [x: string]: any; value: any; onChange: any; }): React.JSX.Element; /** * JSON input with variable reference support for global trigger context data (traditional/hook-based path). * Variables (e.g. {{$user.id}}) are resolved at click time in the hook. */ export declare function GlobalContextDataInput(props: any): React.JSX.Element;