2024-06-21 19:49:13 +03:00

8 lines
489 B
TypeScript

import { ConvertPluginsIntoSignatures, MergePlugins } from '../models';
/**
* Internal plugins that creates the tools used by the other plugins.
* These plugins are used by the tree view components.
*/
export declare const TREE_VIEW_CORE_PLUGINS: readonly [import("../models").TreeViewPlugin<import("./useTreeViewInstanceEvents").UseTreeViewInstanceEventsSignature>];
export type TreeViewCorePluginsSignature = MergePlugins<ConvertPluginsIntoSignatures<typeof TREE_VIEW_CORE_PLUGINS>>;