import { IReplaySource } from './replay-source.type';
import { ISource } from '../../type/source.type';
export declare function createReplaySource<GValue, GSource extends ISource<GValue>>(source: GSource, maxNumberOfValues?: number): IReplaySource<GValue, GSource>;
