import type { SequentialIdOptions } from '../record';
import type { ReplayPlugin } from '../../../types';
type Options = SequentialIdOptions & {
warnOnMissingId: boolean;
};
export declare const getReplaySequentialIdPlugin: (options?: Partial<Options>) => ReplayPlugin;
export {};