import type { UmbControllerHost } from '../../../../libs/controller-api/index.js'; /** * Check if the current user is the user with the given unique id * @param {UmbControllerHost} host - The controller host. * @param {string} userUnique - The unique id of the user to check. * @returns {Promise} Whether the given user is the current user. */ export declare const isCurrentUser: (host: UmbControllerHost, userUnique: string) => Promise;