import { IterableProtocol } from './commons/types';
declare function repeat(seq: number | string | Function | IterableProtocol, count: number): IterableProtocol;
export default repeat;
