import { type BezierIcon } from '@channel.io/bezier-icons' import type { ActivatableProps, BezierComponentProps, ChildrenProps, ContentProps, InteractiveStyleProps, LinkProps, PolymorphicProps, SideContentProps, } from '~/src/types/props' export interface OutlineItemContextProps { indent: number } interface OutlineItemOwnProps { open?: boolean disableChevron?: boolean } export interface OutlineItemProps extends Omit, PolymorphicProps, ChildrenProps, ContentProps, SideContentProps, ActivatableProps, LinkProps, InteractiveStyleProps, OutlineItemOwnProps {}