export declare function findMany(companyId: string, where: Record, skip: number, take: number): Promise; export declare function findById(id: string, companyId: string): Promise; export declare function create(data: { companyId: string; reservationId?: string; reviewId?: string; customerId?: string; severity: string; category: string; subject: string; description?: string; assignedTo?: string; }): Promise; export declare function updateById(id: string, data: Record): Promise; export declare function deleteById(id: string): Promise; //# sourceMappingURL=complaint.repo.d.ts.map