import { MemoizedSelector } from '@ngrx/store'; import { RequiredDocumentMeta, FireStoreDocument } from '@digitaix/types'; export declare const selectDocumentState: MemoizedSelector>; export declare const selectCollection: (collectionPath: string) => MemoizedSelector, import("@ngrx/store/src/selector").DefaultProjectorFn>>; export declare const isCollectionLoaded: (collectionPath: string) => MemoizedSelector>; export declare const getAllDocuments: (collectionPath: string, archived?: boolean) => MemoizedSelector>>; export declare const getDocumentById: (collectionPath: string, id: string) => MemoizedSelector, import("@ngrx/store/src/selector").DefaultProjectorFn>>; export declare const getDocumentsByIds: (collectionPath: string, ids: string[]) => MemoizedSelector[], import("@ngrx/store/src/selector").DefaultProjectorFn[]>>; export declare const countDocuments: (collectionPath: string) => MemoizedSelector>;