export type IndexOperatorMap<T> = {
    $eq?: T;
    $lt?: T;
    $lte?: T;
    $gt?: T;
    $gte?: T;
    $ne?: T;
    $in?: T[];
    $nin?: T[];
    $is?: T;
    $like?: T;
    $ilike?: T;
    $and?: T[];
    $or?: T[];
    $not?: T | T[];
};
//# sourceMappingURL=index-operator-map.d.ts.map