import type { UmbScriptTreeItemModel } from './types.js'; import { UmbTreeServerDataSourceBase } from '../../../core/tree/index.js'; import type { FileSystemTreeItemPresentationModel } from '../../../core/backend-api/index.js'; import type { UmbControllerHost } from '../../../../libs/controller-api/index.js'; /** * A data source for the Script tree that fetches data from the server * @class UmbScriptTreeServerDataSource * @implements {UmbTreeDataSource} */ export declare class UmbScriptTreeServerDataSource extends UmbTreeServerDataSourceBase { /** * Creates an instance of UmbScriptTreeServerDataSource. * @param {UmbControllerHost} host - The controller host for this controller to be appended to * @memberof UmbScriptTreeServerDataSource */ constructor(host: UmbControllerHost); }