import { Type } from '@nestjs/common'; import { Reflector } from '@nestjs/core'; import { ShopifyWebhookHandlerOptions } from './webhooks.interfaces'; export declare class ShopifyWebhooksMetadataAccessor { private readonly reflector; constructor(reflector: Reflector); isShopifyWebhookHandler(target: Type | Function): boolean; getShopifyWebhooksHandlerMetadata(target: Type | Function): ShopifyWebhookHandlerOptions | undefined; }