export declare class FirestoreRepository { protected path: any; protected firestore: any; constructor(path: string, firestore: any); get(_id: string): Promise; count(queries: string[][]): Promise; exist(queries: string[][]): Promise; findOne(queries: string[][]): Promise; search(queries: string[][], page?: number, limit?: number): Promise; setDoc(data: any): Promise; create(data: any, bytesLength?: number, encryption?: string): Promise; update(_id: string, data: any): Promise; delete(_id: string): Promise; }