import type { PrototypeStruct } from '../index.js';
interface Enumerate<T> {
    enumerate(): [number, T][];
}
export declare const enumerate: PrototypeStruct;
declare global {
    interface Array<T> extends Enumerate<T> {
    }
}
export {};
//# sourceMappingURL=enumerate.d.ts.map