/*!
 * SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
 * SPDX-License-Identifier: AGPL-3.0-or-later
 */
declare const n: (singular: string, plural: string, count: number, placeholders?: Record<string, string | number>) => string;
declare const t: (original: string, placeholders?: Record<string, string | number>) => string;
export { n, t };
