import { CanActivate, ExecutionContext } from '@nestjs/common'; import { Reflector } from '@nestjs/core'; export declare const AllowIps: (...ips: string[]) => import("@nestjs/common").CustomDecorator; export declare class AllowIpsAuthorizeGuard implements CanActivate { private reflector; constructor(reflector: Reflector); canActivate(context: ExecutionContext): boolean; }