declare const designConfigRoutesUrl: { module: string; /** * @description Endpoint to get page details (page) * for more details refer {@link https://docs.google.com/document/d/1CwB4evLsQuatG4jI0U1faRtmqtNmIfZOE4fDWiz9-sQ/edit?pli=1&tab=t.0#bookmark=id.qbwilgqdw9a2} */ getPageData: string; /** * @description Endpoint to get page rights only (without full page config) * GET /design-config/page-rights/:pageCode */ getPageRights: string; /** * this will return the user specific design, else org */ getSystemTheme: string; /** * this will return the system theme list for the application */ getSystemThemesList: string; /** * this will save the user specific theme */ systemThemeUserPreferences: string; }; export { designConfigRoutesUrl };