import { type CollectionOptions, ListCollection } from '@zag-js/collection'; import type { Accessor } from './types.js'; export interface CreateListCollectionOptions extends CollectionOptions { } export declare function createListCollection(options: CreateListCollectionOptions | Accessor>): ListCollection; export type { ListCollection };