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