import { Mapper, CallMutation, AfterMutationCalled } from '../../types'; interface DocumentCriteria { snapshot: firebase.firestore.DocumentSnapshot; callMutation: CallMutation; isLast?: boolean; type?: firebase.firestore.DocumentChangeType; mapper?: Mapper; afterMutationCalled?: AfterMutationCalled; } interface CollectionCriteria { snapshot: firebase.firestore.QuerySnapshot; callMutation: CallMutation; notifyNotFound: () => void; mapper?: Mapper; afterMutationCalled?: AfterMutationCalled; } export declare const callDocumentMutation: ({ snapshot, callMutation, isLast, type, mapper, afterMutationCalled, }: DocumentCriteria) => void; export declare const callCollectionMutation: ({ snapshot, callMutation, mapper, afterMutationCalled, notifyNotFound, }: CollectionCriteria) => void; export {};