/** * 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 type { FlowSurfaceCatalogExpand, FlowSurfaceCatalogScenario, FlowSurfaceCatalogSection } from './types'; import type { FlowSurfaceCatalogAnalyzeTargetInput, FlowSurfaceCatalogAnalyzeTargetResult, FlowSurfaceCatalogExpandFlags, FlowSurfaceCatalogScenarioInput, FlowSurfaceCatalogSelectedSectionsInput } from './catalog-smart.types'; export * from './catalog-smart.types'; export { buildCatalogItemOptionalFields, buildFieldCatalogLightCandidate, expandFieldCatalogCandidate, projectCatalogItem, projectCatalogNode, } from './catalog-smart.projector'; export declare function normalizeCatalogSections(actionName: string, input: any): FlowSurfaceCatalogSection[]; export declare function normalizeCatalogExpand(actionName: string, input: any): FlowSurfaceCatalogExpand[]; export declare function buildCatalogExpandFlags(expands: Iterable): FlowSurfaceCatalogExpandFlags; export declare function scenario(input: FlowSurfaceCatalogScenarioInput): FlowSurfaceCatalogScenario; export declare function selectedSections(input: FlowSurfaceCatalogSelectedSectionsInput): FlowSurfaceCatalogSection[]; export declare function analyzeCatalogTarget(input: FlowSurfaceCatalogAnalyzeTargetInput): FlowSurfaceCatalogAnalyzeTargetResult;