import { GlobalAppResponse } from "./GlobalAppResponse"; import { GlobalAppMoveResponse } from "./GlobalAppMoveResponse"; export declare class GlobalApp { static canMigrateUpdateRecord(appId?: string): boolean; static getAppMetadata(applicationId?: string): GlobalAppResponse; static getNameMetadata( metaName?: string, applicationId?: string ): GlobalAppResponse; static getTableMetadata( tableName?: string, applicationId?: string ): GlobalAppResponse; static getUpdateSetMetadata( updateSetId?: string, applicationId?: string ): GlobalAppResponse; static moveMetadata(sysIds?: string, appId?: string): GlobalAppMoveResponse; }