import { AppCollection, Field } from '../types'; import { Ref, ComputedRef } from 'vue'; export type UsableCollection = { info: ComputedRef; fields: ComputedRef; defaults: ComputedRef>; primaryKeyField: ComputedRef; userCreatedField: ComputedRef; sortField: ComputedRef; isSingleton: ComputedRef; accountabilityScope: ComputedRef<'all' | 'activity' | null>; }; export declare function useCollection(collectionKey: string | Ref): UsableCollection; //# sourceMappingURL=use-collection.d.ts.map