export class Query { constructor(collectionName: any, firestore: any, isGroupQuery?: boolean); collectionName: any; firestore: any; filters: any[]; selectFields: any[] | undefined; isGroupQuery: boolean; get(...args: any[]): Promise; _get(): any; select(...fieldPaths: any[]): any; where(key: any, comp: any, value: any, ...args: any[]): any; offset(...args: any[]): any; limit(...args: any[]): any; orderBy(...args: any[]): any; startAfter(...args: any[]): any; startAt(...args: any[]): any; withConverter(...args: any[]): any; onSnapshot(...args: any[]): jest.Mock; } declare const mockGet: jest.Mock; declare const mockSelect: jest.Mock; declare const mockWhere: jest.Mock; declare const mockLimit: jest.Mock; declare const mockOrderBy: jest.Mock; declare const mockOffset: jest.Mock; declare const mockStartAfter: jest.Mock; declare const mockStartAt: jest.Mock; declare const mockQueryOnSnapshot: jest.Mock; declare const mockQueryOnSnapshotUnsubscribe: jest.Mock; declare const mockWithConverter: jest.Mock; export declare namespace mocks { export { mockGet }; export { mockSelect }; export { mockWhere }; export { mockLimit }; export { mockOrderBy }; export { mockOffset }; export { mockStartAfter }; export { mockStartAt }; export { mockQueryOnSnapshot }; export { mockQueryOnSnapshotUnsubscribe }; export { mockWithConverter }; } export {}; //# sourceMappingURL=query.d.ts.map