import { IStore } from 'interfaces';
type SyncProps<T> = {
    key: string;
    store: IStore<T>;
};
export declare function syncStoreData<T>(props: SyncProps<T>): void;
export {};
