/** * Small helper to recycle array instances in hot paths. * * @internal */ export declare class ReusableArrayPool { #private; constructor(maxSize?: number); take(factory: () => T): T; release(value: T, reset?: (value: T) => void): void; }