import type { Log } from '@scayle/storefront-core'; declare module 'h3' { interface H3EventContext { $log: Log; } } /** * Nitro plugin to initialize and inject a logger instance into the request context. * * @param nitroApp The nitro app instance. * * @see https://nitro.build/guide/configuration#runtime-configuration * @see https://nitro.build/guide/plugins */ declare const _default: import("nitropack").NitroAppPlugin; export default _default;