export declare const SCOPES_KEY = "jwt_scopes"; /** * Ensure the token has all the list of scopes. * This decorator receive only the keys of the scopes * if you need to check the value must be implemented in the handler code * * Example: * Allow only tokens with a country a and store * @Scopes('country', 'store') * * ALLOWED * ["country:chile", "store:62"] * NOT ALLOWED * ["country:chile"] * * @param scopes * @returns */ export declare const Scopes: (...scopes: string[]) => import("@nestjs/common").CustomDecorator;