export interface HistoryContext {
    shouldBypassHistory: boolean;
}
export declare const runWithHistoryContext: (contextData: HistoryContext, fn: () => unknown) => unknown;
export declare const getHistoryContext: () => HistoryContext | undefined;
