import { UmbRepositoryBase, type UmbRepositoryResponse } from '../../../core/repository/index.js'; import type { UmbControllerHost } from '../../../../libs/controller-api/index.js'; export declare class UmbDictionaryExportRepository extends UmbRepositoryBase { #private; constructor(host: UmbControllerHost); /** * @description - Export a Dictionary, optionally including child items. * @param {string} unique - The unique identifier of the dictionary to export. * @param {boolean} [includeChildren] - Whether to include child items in the export. * @returns {Promise>} The exported dictionary. * @memberof UmbDictionaryExportRepository */ requestExport(unique: string, includeChildren?: boolean): Promise>; } export { UmbDictionaryExportRepository as api };