/** * 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 } from '@nocobase/client-v2'; export declare class ChinaRegionFieldInterface extends CollectionFieldInterface { name: string; type: string; group: string; order: number; title: string; isAssociation: boolean; default: { uiSchema: { 'x-component-props': { changeOnSelectLast: boolean; labelInValue: boolean; maxLevel: number; fieldNames: { label: string; value: string; children: string; }; }; type: string; 'x-component': string; }; interface: string; type: string; target: string; targetKey: string; sortBy: string; }; availableTypes: string[]; initialize(values: any): void; configure: { items: ({ name: string; title: string; component: string; defaultValue: number; options: ({ value: number; label: string; disabled?: undefined; } | { value: number; label: string; disabled: boolean; })[]; } | { name: string; title: string; component: string; defaultValue?: undefined; options?: undefined; })[]; }; filterable: { children: { operators: string; name: string; title: string; schema: { title: string; type: string; 'x-component': string; }; }[]; }; }