import { DensityProp } from '../../composables/density.js'; import { OnyxListItemProps } from '../OnyxListItem/types.js'; export type OnyxTreeViewItemProps = DensityProp & Pick & { /** * Label to show. */ label?: string; /** * Optional icon to show. */ icon?: string; /** * Indicates whether the nested children are expanded. */ open?: boolean; };