1 | import * as React from 'react';
|
2 | export interface TreeViewRootProps {
|
3 |
|
4 | children: React.ReactNode;
|
5 |
|
6 | hasChecks?: boolean;
|
7 |
|
8 | hasGuides?: boolean;
|
9 |
|
10 | variant?: 'default' | 'compact' | 'compactNoBackground';
|
11 |
|
12 | className?: string;
|
13 | }
|
14 | export declare class TreeViewRoot extends React.Component<TreeViewRootProps> {
|
15 | displayName: string;
|
16 | private treeRef;
|
17 | componentDidMount(): void;
|
18 | componentWillUnmount(): void;
|
19 | handleKeys: (event: KeyboardEvent) => void;
|
20 | handleKeysCheckbox: (event: KeyboardEvent) => void;
|
21 | variantStyleModifiers: {
|
22 | [key in TreeViewRootProps['variant']]: string | string[];
|
23 | };
|
24 | render(): JSX.Element;
|
25 | }
|
26 |
|
\ | No newline at end of file |