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