export declare const getDefaultObjectService: (objectService: any, search: string, itemMap: any, filterFn?: (s: any) => boolean) => { title: string; value: string; key: string; disabled: boolean; children: any; }; export declare const getDefaultObjectServiceItem: (s: any, busiObjectName: string, busiObjectId: string) => { title: string; value: any; key: any; name: any; code: string; data: any; }; declare const getServiceData: ({ innerService, platformService, standardService, objectService, queryServices, rhinService, }: { innerService?: never[] | undefined; platformService?: never[] | undefined; standardService?: never[] | undefined; objectService?: never[] | undefined; queryServices?: never[] | undefined; rhinService?: never[] | undefined; }) => { title: string; value: string; key: string; disabled: boolean; children: any; }[]; declare const initService: ({ api, appId, serviceTabs }: any) => Promise<{ queryServices: unknown; innerService: unknown; platformService: unknown; standardService: unknown; objectService: unknown; rhinService: unknown; } | { queryServices?: undefined; innerService?: undefined; platformService?: undefined; standardService?: undefined; objectService?: undefined; rhinService?: undefined; }>; declare const convertToAppFormCompType: (c: any) => any; declare const removeParamsJsonChildrenNode: (params: any) => any; export { getServiceData, initService, convertToAppFormCompType, removeParamsJsonChildrenNode };