import type { Generic } from 'adopted-style-sheets'; import type { PropLabel } from '../props'; type RequiredProps = PropLabel; type OptionalProps = unknown; type RequiredStates = RequiredProps; type OptionalStates = OptionalProps; export type TreeProps = Generic.Element.Members; export type TreeStates = Generic.Element.Members; export type TreeAPI = Generic.Element.ComponentApi; export {};