import { TreeCollection, type TreeCollectionOptions } from '@zag-js/collection'; import type { Accessor } from './types.js'; export interface CreateTreeCollectionOptions extends TreeCollectionOptions { } export declare function createTreeCollection(options: CreateTreeCollectionOptions | Accessor>): TreeCollection; export type { TreeCollection };