export declare const RouterPath: { RootPath: string; WorkspaceIdPath: string; MenuTypePath: string; PaneTypePath: string; StandardPath: string; }; export declare const StandardPathReg = "/:workspaceId?/:menuType?/:paneType?/:id?"; export type StandardPathParams = { workspaceId: string; menuType: string; paneType: string; id: string; }; export declare enum ArexPanesType { PANE_NOT_FOUND = "pane-not-found", NO_PERMISSION = "no-permission" } export declare enum ArexMenusType { } export declare const ArexMenuNamespace = "arex-menu"; export declare const ArexPaneNamespace = "arex-pane"; export declare const RequestMethod: readonly ["GET", "POST", "PUT", "DELETE", "PATCH"]; export declare enum RequestMethodEnum { GET = "GET", POST = "POST", PUT = "PUT", DELETE = "DELETE", PATCH = "PATCH" } export declare enum RoleEnum { Admin = 1, Editor = 2, Viewer = 3 } export declare const RoleMap: { 1: string; 2: string; 3: string; }; export declare const I18_KEY = "i18nextLng";