import "reflect-metadata/Reflect";
/**
 * Decorator for Authentication and Authorization
 * @param roles Roles array (string)
 */
export declare function Authorize(roles?: string[]): (target: any, propertyKey?: string | undefined, descriptor?: PropertyDescriptor | undefined) => void;
