import type { UmbControllerHost } from '../../../../libs/controller-api/index.js'; import type { UmbDataSourceResponse } from '../../../core/repository/index.js'; export declare class UmbDictionaryExportServerDataSource { #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 UmbDictionaryExportServerDataSource */ export(unique: string, includeChildren: boolean): Promise>; }