/** * 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 { Context } from '@nocobase/actions'; export declare const uiSchemaActions: { getJsonSchema: (ctx: any, next: any) => Promise; getProperties: (ctx: any, next: any) => Promise; getParentJsonSchema: (ctx: any, next: any) => Promise; getParentProperty: (ctx: any, next: any) => Promise; insert: (ctx: any, next: any) => Promise; insertNewSchema: (ctx: any, next: any) => Promise; remove: (ctx: any, next: any) => Promise; patch: (ctx: any, next: any) => Promise; initializeActionContext: (ctx: any, next: any) => Promise; batchPatch: (ctx: any, next: any) => Promise; clearAncestor: (ctx: any, next: any) => Promise; insertAdjacent: (ctx: Context, next: any) => Promise; insertBeforeBegin: (ctx: Context, next: any) => Promise; insertAfterBegin: (ctx: Context, next: any) => Promise; insertBeforeEnd: (ctx: Context, next: any) => Promise; insertAfterEnd: (ctx: Context, next: any) => Promise; };