import { SetFunction, GetFunction } from '../createStore.mjs'; import 'vue'; declare function withLogger>(options?: { store?: string; timestamp?: boolean; expanded?: boolean; }): (initializer: (set: SetFunction, get: GetFunction) => T) => (set: SetFunction, get: GetFunction) => T; export { withLogger };