23 lines
872 B
TypeScript
23 lines
872 B
TypeScript
|
|
import type { TreeTokenSections } from '@primeuix/themes/types/tree';
|
||
|
|
|
||
|
|
export * from '@primeuix/themes/types/tree';
|
||
|
|
|
||
|
|
declare const root: TreeTokenSections.Root;
|
||
|
|
declare const node: TreeTokenSections.Node;
|
||
|
|
declare const nodeIcon: TreeTokenSections.NodeIcon;
|
||
|
|
declare const nodeToggleButton: TreeTokenSections.NodeToggleButton;
|
||
|
|
declare const loadingIcon: TreeTokenSections.LoadingIcon;
|
||
|
|
declare const filter: TreeTokenSections.Filter;
|
||
|
|
declare const css: TreeTokenSections.CSS;
|
||
|
|
declare const _default: {
|
||
|
|
root: TreeTokenSections.Root;
|
||
|
|
node: TreeTokenSections.Node;
|
||
|
|
nodeIcon: TreeTokenSections.NodeIcon;
|
||
|
|
nodeToggleButton: TreeTokenSections.NodeToggleButton;
|
||
|
|
loadingIcon: TreeTokenSections.LoadingIcon;
|
||
|
|
filter: TreeTokenSections.Filter;
|
||
|
|
css: string;
|
||
|
|
};
|
||
|
|
|
||
|
|
export { css, _default as default, filter, loadingIcon, node, nodeIcon, nodeToggleButton, root };
|