declare const tabList: { key: string; label: string; }[]; declare const OPER_MAP: { DELETE: { label: string; color: string; }; ADD: { label: string; color: string; }; MODIFY: { label: string; color: string; }; }; declare const CHANGE_TYPE: { PAGE_ACTION: string; PAGE_EVENT: string; CUSTOM_FUNCTION: string; CUSTOM_FUNCTION_PROP: string; CUSTOM_FUNCTION_IN_PARAM: string; CUSTOM_FUNCTION_IMPL: string; PAGE_COMPONENT: string; PAGE_COMPONENT_STYLE: string; PAGE_COMPONENT_PROPS: string; PAGE_DS_REQ_ATTR: string; PAGE_DS_RESP_ATTR: string; PAGE_DS: string; PAGE_DS_PROP: string; PAGE: string; }; declare const TABS_DATA: { key: string; title: string; types: string[]; }[]; declare const ACTION_MAP: { condition: string; elseIf: string; }; declare const ObjectQueryTypes: { code: string; name: string; }[]; declare const CUST_FUNC_VALUE_MAP: { eventName: string; eventCode: string; externalCall: string; remark: string; implementation: string; eventTags: string; }; declare const COMP_TABS_DATA: { key: string; title: string; }[]; declare const DATASOURCE_TABS_DATA: { key: string; title: string; types: string[]; }[]; declare const CUST_EVENT_TABS_DATA: { key: string; title: string; }[]; declare const DATASOURCE_VALUE_MAP: { key: string; label: string; valueKey: string; }[]; declare const DATASOURCE_BASIC_MAP: { custom: string[]; object: string[]; service: string[]; }; export { tabList, OPER_MAP, CHANGE_TYPE, ACTION_MAP, ObjectQueryTypes, CUST_FUNC_VALUE_MAP, TABS_DATA, COMP_TABS_DATA, DATASOURCE_TABS_DATA, CUST_EVENT_TABS_DATA, DATASOURCE_VALUE_MAP, DATASOURCE_BASIC_MAP, }; export declare type CHANGE_TYPE_ENUMS = keyof typeof CHANGE_TYPE;