import type { ModuleInterface } from '@n8n/decorators'; import { OAuthJweServiceProxy } from '../../oauth/oauth-jwe-service.proxy'; export declare class OAuthJweModule implements ModuleInterface { init(): Promise; context(): Promise<{ oauthJweProxyProvider: OAuthJweServiceProxy; }>; }