import { SharedState } from "@shared-state/core";
import { PersistedSharedState, PersistentOptions } from "./types";
export declare function persist<T>(sharedState: SharedState<T>, options: PersistentOptions<T>): PersistedSharedState<T>;
