import type { PatchesOption, TravelsDeserializeOptions, TravelsPersistenceErrorCode, TravelsSerializedHistory } from './type'; export declare const TRAVELS_HISTORY_SCHEMA_VERSION: 1; export declare class TravelsPersistenceError extends Error { readonly code: TravelsPersistenceErrorCode; readonly cause?: unknown; constructor(code: TravelsPersistenceErrorCode, message: string, options?: { cause?: unknown; }); } export declare const getTravelPatchesValidationError:
(patches: unknown) => string | null;
export declare const deserializeTravelsHistory: (input: unknown, options?: TravelsDeserializeOptions) => TravelsSerializedHistory;
//# sourceMappingURL=persistence.d.ts.map