QdrantDeleteParams: {
    filter?: never;
    ids: string[];
    shardKey?: string;
} | {
    filter: object;
    ids?: never;
    shardKey?: string;
}

Type that defines the parameters for the delete operation in the QdrantStore class. It includes ids, filter and shard key.