import type { UmbControllerHost } from '../../../../libs/controller-api/index.js'; import type { UmbDataSourceResponse } from '../../../core/repository/index.js'; export declare class UmbDictionaryImportServerDataSource { #private; constructor(host: UmbControllerHost); /** * @description - Import a dictionary * @param {string} temporaryFileUnique - The unique identifier of the uploaded temporary file to import. * @param {string?} parentUnique - The unique identifier of the parent to import into, if any. * @returns {Promise>} The result of the import request. * @memberof UmbDictionaryImportServerDataSource */ import(temporaryFileUnique: string, parentUnique: string | null): Promise>; }