export declare type Concurrency = number | null;
export declare const setConcurrency: (newConcurrency: Concurrency) => void;
export declare const getConcurrency: () => number | null;
