import type { UmbControllerHost } from '../../../../libs/controller-api/index.js'; export declare class UmbDictionaryExportServerDataSource { #private; constructor(host: UmbControllerHost); /** * @description - Export a Dictionary, optionally including child items. * @param {string} unique * @param {boolean} includeChildren * @returns {*} * @memberof UmbDictionaryExportServerDataSource */ export(unique: string, includeChildren: boolean): Promise>; }