import type { FC, HTMLAttributes, ReactNode, Ref } from 'react';
import { type TestableProps } from '../../utils/testId';
export interface TreeProps extends HTMLAttributes, TestableProps {
ref?: Ref;
children?: ReactNode;
indent?: number;
gap?: number;
}
export declare const Tree: FC;