/** * Bulkhead Pattern - Resource isolation with concurrency control */ import { BulkheadOptions, BulkheadStats } from "../types/bulkhead"; /** * Define a bulkhead with Vercel-style callable API */ export declare function defineBulkhead(options: BulkheadOptions): { (): Promise; getStats(): BulkheadStats; }; export declare const bulkhead: typeof defineBulkhead; //# sourceMappingURL=bulkhead.d.ts.map