import { DestroyRef } from '@angular/core'; import { type MonoTypeOperatorFunction } from 'rxjs'; type CreateRepeat = ((count?: number) => MonoTypeOperatorFunction) & { emit: () => void; }; export declare function createRepeat(destroyRef?: DestroyRef): CreateRepeat; export declare function createRepeat(generalCount?: number, destroyRef?: DestroyRef): CreateRepeat; export {};