import { ComputedRef, MaybeRef } from 'vue'; import * as asyncList from '@zag-js/async-list'; export interface UseAsyncListProps extends asyncList.Props { } export interface UseAsyncListReturn extends ComputedRef> { } export declare const useAsyncList: (props?: MaybeRef>) => UseAsyncListReturn;