interface Props { showCollapsedIcon: boolean; dataTestId?: string; showTreeLine?: boolean; } export default function CollapsibleChevron({ dataTestId, showCollapsedIcon, showTreeLine, }: Props): import("react/jsx-runtime").JSX.Element; export {};