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