/** What a queue is stored in. BullMQ v6 can be backed by PostgreSQL; everything else is Redis. */
export declare const DATASTORES: {
    readonly redis: "redis";
    readonly postgres: "postgres";
};
export type DATASTORES = (typeof DATASTORES)[keyof typeof DATASTORES];
