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