/** * 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 { CollectionFieldInterface, type FieldInterfaceConfigure } from '@nocobase/client-v2'; type FormulaFilterMeta = { options?: { dataType?: string; }; dataType?: string; type?: string; uiSchema?: { type?: string; }; }; export declare const formulaDateOperators: import("@nocobase/client-v2").FieldFilterOperator[]; export declare class FormulaFieldInterface extends CollectionFieldInterface { name: string; type: string; group: string; order: number; title: string; description: string; sortable: boolean; default: { interface: string; type: string; uiSchema: { type: string; 'x-component': string; 'x-read-pretty': boolean; 'x-component-props': { stringMode: boolean; step: string; }; }; }; configure: FieldInterfaceConfigure; filterable: import("@nocobase/client-v2").FieldFilterable; titleUsable: boolean; } export {};