import { Hook } from '@oclif/core';
/**
 * Inlined version of the `\@shopify/app` init hook.
 * The original hook imports `\@shopify/app` → local-storage → cli-kit error chain (~1s).
 * This inlined version avoids those imports entirely. It lazily imports the
 * LocalStorage class only at call time, and uses Node's native crypto.
 */
declare const init: Hook<'init'>;
export default init;
