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