import { DecoratorFunction } from '../decorators/decoratorFunction'; export declare enum AuthenticationType { OAuth = "OAuth", ApiKey = "ApiKey" } export declare function IsAuthenticated(authenticationMethodAllowed?: AuthenticationType[]): DecoratorFunction;