import { ConvoMemoryGraphStore, ConvoMemoryGraphStoreOptions } from "./ConvoMemoryGraphStore";
export interface ConvoLocalStorageGraphStoreOptions extends ConvoMemoryGraphStoreOptions {
    storeKey?: string;
}
export declare class ConvoLocalStorageGraphStore extends ConvoMemoryGraphStore {
    private readonly storeKey;
    constructor({ storeKey, ...options }: ConvoLocalStorageGraphStoreOptions);
    private save;
    saveChangesAsync(): Promise<void>;
}
