import { Semaphore } from "redis-semaphore"; export declare function createSema(identifier: string, limit: number): Semaphore; export declare function withSema(identifier: string, limit: number, fn: () => Promise): Promise;