export default semaphore;
declare function semaphore(count: any): {
    take: (timeout: any) => Promise<any>;
    release: () => void;
    test: () => boolean;
};
//# sourceMappingURL=semaphore.d.ts.map