import { CanActivate, ExecutionContext } from '@nestjs/common';
import { ConfigService } from '../config-service';
export declare class ShopifyWebhookGuard implements CanActivate {
private config;
constructor(config: ConfigService);
canActivate(context: ExecutionContext): boolean;
}