UNPKG

@atlaskit/table-tree

Version:

A table tree is an expandable table for showing nested hierarchies of information.

12 lines (11 loc) • 243 B
/** * @jsxRuntime classic * @jsx jsx */ import type { FC, HTMLAttributes, ReactNode } from 'react'; /** * __Tree row container__ */ export declare const TreeRowContainer: FC<HTMLAttributes<HTMLDivElement> & { children: ReactNode; }>;