export declare type Store = { [key: string]: any; }; export declare const isStore: (store: unknown) => store is Store; export declare const getStoreName: (store: Store) => string | null;