// src/components/collection.ts
import {
  ListCollection,
  TreeCollection,
  filePathToTree
} from "@zag-js/collection";
var createListCollection = (options) => new ListCollection(options);
var createTreeCollection = (options) => new TreeCollection(options);
var createFileTreeCollection = (paths) => filePathToTree(paths);

export {
  createListCollection,
  createTreeCollection,
  createFileTreeCollection
};
