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