/**
 * SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
 * SPDX-License-Identifier: AGPL-3.0-or-later
 */
type Status = 'online' | 'away' | 'busy' | 'dnd' | 'invisible' | 'offline';
export declare const getUserStatusText: (status: Status) => string;
export {};
