import { PrismaService } from "../../infra/prisma/prisma.service";
export declare abstract class BaseRepository {
    protected readonly prisma: PrismaService;
    protected constructor(prisma: PrismaService);
    protected tenantWhere(companyId: string): {
        companyId: string;
    };
}
