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