export interface SchemaTreeProps { schema: unknown; /** When set, the name is assumed shown by the parent — the root row is skipped and children render directly. */ rootName?: string; className?: string; /** Remaining steps toward a search-selected node — see SchemaNode's own doc. */ focusTokens?: string[] | null; /** The target node's DOM id, paired with focusTokens. */ focusId?: string | null; } /** Entry point: renders a full schema tree with $ref resolution and expand/collapse. */ export default function SchemaTree({ schema, rootName, className, focusTokens, focusId, }: SchemaTreeProps): import("react").JSX.Element | null;