import React from 'react'; import type { TreeModel } from './types'; export declare type SectionProps = { tree: TreeModel; onClick: (updateNode: { id: string; isOpen: boolean; }) => void; }; export declare const TREE_SELECT_DENSITY = -1; export declare const Section: import("styled-components").StyledComponent<({ tree, onClick, ...props }: SectionProps) => React.JSX.Element, import("styled-components").DefaultTheme, {}, never>;