import { CollectionRef, Query, UseCollectionHook } from './firestore'; export interface UseCollectionOnceProps { path: string; query?: (ref: CollectionRef) => Query; onlyIds?: boolean; } export default function useCollectionOnce(props: UseCollectionOnceProps): UseCollectionHook;