/** * Decorator to mark a controller or method as requiring a valid tenant context * Use with TenantGuard to enforce tenant requirements * * @example * ```typescript * @Controller('users') * @RequireTenant() * export class UsersController { * // All methods require a tenant * } * ``` * * @example * ```typescript * @Controller('users') * export class UsersController { * @Get() * @RequireTenant() * findAll() { * // Only this method requires a tenant * } * } * ``` */ export declare const RequireTenant: () => import("@nestjs/common").CustomDecorator; //# sourceMappingURL=require-tenant.decorator.d.ts.map