import type { UmbControllerHost } from '../../../../libs/controller-api/index.js'; import type { CurrentUserConfigurationResponseModel } from '../../../core/backend-api/index.js'; import type { UmbDataSourceResponse } from '../../../core/repository/index.js'; export declare class UmbCurrentUserConfigServerDataSource { #private; constructor(host: UmbControllerHost); /** * Get the current user configuration. * @returns {Promise>} The current user configuration, or an error * @memberof UmbCurrentUserConfigServerDataSource */ getCurrentUserConfig(): Promise>; }